kiss-repo

personal package repository
git clone git://bvnf.space/kiss-repo.git
Log | Files | Refs | README | LICENSE

build (357B)


      1
      2
      3
      4
      5
      6
      7
      8
      9
     10
     11
     12
     13
     14
     15
#!/bin/sh -e

# Make sure the binaries go into /usr/bin
# shellcheck disable=2016
sed 's@root_sbindir=/sbin@root_sbindir=/usr/bin@;
    s@sbindir=${exec_prefix}/sbin@sbindir=${exec_prefix}/bin@' configure >_
mv _ configure; chmod +x configure

./configure \
    --prefix=/usr \
    --sbindir=/usr/bin \
    --without-selinux

make
make DESTDIR="$1" install