blob: e74d1941223d2e3b3d483e8e10786f3a3ddb18bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Serveur protocol de synchronisation de fichiers très éfficace
# URL: http://samba.anu.edu.au/rsync/
# Maintainer: NuTyX coreteam
# Packager: thierryn1 at hispeed dot ch
# Depends on: rsync
# Run on: rsync
name=rsync-server
version=20090302
release=1
source=()
build() {
source /etc/blfs-bootscripts
wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$version.tar.bz2
tar xvf $scripts-$version.tar.bz2
cd $scripts-$version
make DESTDIR=$PKG install-rsyncd
}
|