make.sh (298B)
- #!/bin/sh
- set -ex
- P="make-4.4.1"
- tar xof /distfiles/${P}.tar.gz
- cd ./$P
- export LD="tcc"
- ./configure --prefix=/usr --disable-nls --disable-dependency-tracking
- pdpmake clean
- # ARFLAGS as otherwise it passes -o which is invalid
- pdpmake ARFLAGS='-r'
- pdpmake install INSTALL=install
- cd ..
- rm -r ./$P