1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-30 01:01:22 +00:00
morpheus/pkgs/gawk

30 lines
490 B
Plaintext
Raw Normal View History

2013-09-24 11:15:13 +00:00
url=$mirror/gawk-4.1.0.tar.gz
fetch() {
wget -c $url -O src/gawk-4.1.0.tar.gz
}
unpack() {
pushd src
[ -d gawk-4.1.0 ] || tar xzf gawk-4.1.0.tar.gz
popd
}
build() {
pushd src/gawk-4.1.0
CC="x86_64-linux-musl-gcc -static" ./configure --prefix=$root --disable-nls \
2013-09-27 11:16:30 +00:00
--libdir=$libcroot/lib \
--libexecdir=$libcroot/libexec || return 1
2013-09-24 11:15:13 +00:00
make -j$nprocs || return 1
popd
}
install() {
pushd src/gawk-4.1.0
make install || return 1
pushd $root/bin
2013-09-26 15:26:46 +00:00
ln -sf gawk awk
2013-09-24 11:15:13 +00:00
popd
popd
}