1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-07-03 07:45:12 +00:00
morpheus/pkgs/rsync

25 lines
381 B
Plaintext
Raw Normal View History

2013-09-16 13:33:44 +00:00
url=$mirror/rsync-3.0.9.tar.gz
fetch() {
wget -c $url -O src/rsync-3.0.9.tar.gz
}
unpack() {
cd src
2013-09-16 13:33:44 +00:00
[ -d rsync-3.0.9 ] || tar xzf rsync-3.0.9.tar.gz
cd -
2013-09-16 13:33:44 +00:00
}
build() {
cd src/rsync-3.0.9
2014-02-20 16:10:47 +00:00
CC=x86_64-linux-musl-gcc ./configure --prefix="$root" LDFLAGS="-static" || return 1
make -j$nprocs || return 1
cd -
2013-09-16 13:33:44 +00:00
}
install() {
cd src/rsync-3.0.9
2013-09-17 14:40:13 +00:00
make install || return 1
cd -
2013-09-16 13:33:44 +00:00
}