1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-26 00:28:33 +00:00
morpheus/pkgs/make

25 lines
394 B
Plaintext
Raw Normal View History

2013-09-17 12:44:54 +00:00
url=$mirror/make-3.82.tar.bz2
fetch() {
wget -c $url -O src/make-3.82.tar.bz2
}
unpack() {
pushd src
[ -d make-3.82 ] || tar xjf make-3.82.tar.bz2
popd
}
build() {
pushd src/make-3.82
2013-09-17 14:40:13 +00:00
CC="musl-gcc -static" ./configure --prefix=$root --disable-nls || return 1
make CC="musl-gcc -static" -j$nprocs || return 1
2013-09-17 12:44:54 +00:00
popd
}
install() {
pushd src/make-3.82
2013-09-17 14:40:13 +00:00
make install || return 1
2013-09-17 12:44:54 +00:00
popd
}