kiss-mfavila-small/ports/ubase-git/build

20 lines
333 B
Plaintext
Raw Normal View History

2021-05-09 02:10:08 -04:00
#!/bin/sh -e
for patch in *.patch; do
patch -p1 < "$patch"
done
sed -i \
-e "/^CFLAGS/s/=/= $CFLAGS -static/" \
-e "/^LDFLAGS/s/=/= $LDFLAGS -static/" \
config.mk
# Prevent the following binaries from building
for nobin in hostname
do sed -i s/hostname// Makefile
done
make
make DESTDIR="$1" PREFIX=/usr install