kiss-mfavila-large/ports/official/core/ubase/build

23 lines
397 B
Plaintext
Raw Normal View History

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