2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-15 20:32:26 +00:00
repo/extra/cryptsetup/build

13 lines
177 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 \
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