repo/extra/cryptsetup/build

14 lines
202 B
Plaintext
Raw Normal View History

2019-06-23 06:12:25 +00:00
#!/bin/sh -e
2019-10-08 08:21:00 +00:00
machine=$(cc -dumpmachine)
2019-06-23 06:49:14 +00:00
2019-06-23 06:12:25 +00:00
./configure \
--prefix=/usr \
2020-02-10 23:08:55 +00:00
--sbindir=/usr/bin \
2019-06-23 06:49:14 +00:00
--build="$machine" \
--host="$machine" \
2019-06-23 06:26:21 +00:00
--disable-blkid
2019-06-23 06:12:25 +00:00
make
make DESTDIR="$1" install