1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-07-01 07:21:23 +00:00
morpheus/pkgs/man

24 lines
275 B
Plaintext
Raw Normal View History

2013-09-16 13:42:28 +00:00
url=$mirror/man.tar.gz
fetch() {
wget -c $url -O src/man.tar.gz
}
unpack() {
pushd src
[ -d man ] || tar xzf man.tar.gz
popd
}
build() {
pushd src/man
2013-09-17 14:40:13 +00:00
musl-gcc -std=gnu99 -o man man.c -static || return 1
2013-09-16 13:42:28 +00:00
popd
}
install() {
pushd src/man
cp man $root/bin
popd
}