kiss-mfavila-large/ports/unofficial/rolling/tcc-git/build

18 lines
251 B
Plaintext
Raw Normal View History

#!/bin/sh -e
2022-09-23 11:13:47 +00:00
for i in *.patch
do
patch -R -p1 < $i
done
./configure \
--prefix=/usr \
--cc="${CC:-cc}" \
2022-08-23 20:40:30 +00:00
--config-musl \
--enable-static
sed -i 's/-DC2STR/${CFLAGS} ${LDFLAGS} -DC2STR/g' Makefile
make
make DESTDIR="$1" install