1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-27 08:48:33 +00:00
morpheus/pkgs/jupp
2014-02-19 16:45:05 +00:00

26 lines
397 B
Plaintext

url=$mirror/joe-3.1jupp26.tgz
fetch() {
wget -c $url -O src/joe-3.1jupp26.tgz
}
unpack() {
cd src
[ -d jupp ] || tar xzf joe-3.1jupp26.tgz
cd -
}
build() {
cd src/jupp
CC=x86_64-linux-musl-gcc sh configure --prefix="$root" CFLAGS="-I$libcroot/include" \
LDFLAGS="-L$libcroot/lib -static" || return 1
make || return 1
cd -
}
install() {
cd src/jupp
make install || return 1
cd -
}