mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 11:10:08 -07:00
7449524e94
Courtesy of @cemkeylan, from IRC
23 lines
451 B
Bash
Executable File
23 lines
451 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-doc \
|
|
--disable-nls
|
|
|
|
make
|
|
make install
|
|
|
|
# Link the binaries statically
|
|
cd src
|
|
rm -f xz/xz lzmainfo/lzmainfo xzdec/lzmadec xzdec/xzdec
|
|
|
|
make LDFLAGS=-all-static -C xz
|
|
make LDFLAGS=-all-static -C lzmainfo
|
|
make LDFLAGS=-all-static -C xzdec
|
|
|
|
for bin in xz/xz lzmainfo/lzmainfo xzdec/lzmadec xzdec/xzdec; do
|
|
cp "$bin" "$DESTDIR/usr/bin"
|
|
chmod 755 "$DESTDIR/usr/bin/${bin##*/}"
|
|
done
|