repo/extra/cryptsetup/build

13 lines
177 B
Plaintext
Raw Normal View History

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