milis/talimatname/temel/rsync/talimat

30 lines
652 B
Plaintext
Raw Normal View History

2017-10-27 21:56:50 +02:00
# Tanım: Synchronizing files over a network by sending just the differences in the files.
2016-02-24 01:27:23 +01:00
# URL: http://samba.anu.edu.au/rsync/
2017-10-27 21:56:50 +02:00
# Paketçi: milisarge
# Gerekler:
2016-02-24 01:27:23 +01:00
name=rsync
version=3.1.2
release=1
2016-03-20 02:15:25 +01:00
source=( http://rsync.samba.org/ftp/$name/$name-$version.tar.gz )
2016-02-24 01:27:23 +01:00
2017-10-27 23:59:41 +02:00
derle() {
2016-02-24 01:27:23 +01:00
source /etc/blfs-bootscripts
wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2
cd $name-$version
./configure --prefix=/usr \
-mandir=/usr/share/man \
--infodir=/usr/share/info
make
make DESTDIR=$PKG install
# service
cd $SRC
tar xf $scripts-$scriptsversion.tar.bz2
cd $SRC/$scripts-$scriptsversion
make DESTDIR=$PKG install-rsyncd
}