1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-07-03 01:05:09 +00:00
morpheus/pkgs/mksh-R47

25 lines
324 B
Plaintext
Raw Normal View History

2013-09-06 08:31:51 +00:00
url=$mirror/mksh-R47.tar.gz
2013-09-05 10:59:49 +00:00
2013-09-06 08:31:51 +00:00
fetch() {
wget -c $url -O src/mksh-R47.tar.gz
}
2013-09-05 10:59:49 +00:00
2013-09-06 08:31:51 +00:00
unpack() {
pushd src
[ -d mksh ] || tar xzf mksh-R47.tar.gz
popd
}
2013-09-05 10:59:49 +00:00
2013-09-06 08:31:51 +00:00
build() {
pushd src/mksh
2013-09-17 14:40:13 +00:00
CC=musl-gcc LDFLAGS+=-static sh Build.sh || return 1
2013-09-06 08:31:51 +00:00
popd
}
2013-09-05 10:59:49 +00:00
2013-09-06 08:31:51 +00:00
install() {
cp src/mksh/mksh $root/bin
pushd $root/bin
ln -s /bin/mksh sh
popd
}