--- /dev/null
+drwxr-xr-x root/root etc/
+drwxr-xr-x root/root etc/ports/
+drwxr-xr-x root/root etc/ports/drivers/
+-rwxr-xr-x root/root etc/ports/drivers/rsync
+drwxr-xr-x root/root etc/rc.d/
+-rwxr-xr-x root/root etc/rc.d/rsyncd
+-rw-r--r-- root/root etc/rsyncd.conf
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/rsync
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+-rw-r--r-- root/root usr/man/man1/rsync.1.gz
+drwxr-xr-x root/root usr/man/man5/
+-rw-r--r-- root/root usr/man/man5/rsyncd.conf.5.gz
+drwxr-xr-x root/root var/
+drwxr-xr-x root/root var/log/
+-rw-r--r-- root/root var/log/rsyncd.log (EMPTY)
--- /dev/null
+b53525900817cf1ba7ad3a516ab5bfe9 rsync-3.0.7.tar.gz
+f8dcfe5cf2afef1ea90107a6ff4540cd rsync.driver
+a71995f22768c931c5649a1336d25ffb rsyncd
+b4e95fa8c8f3ae13cfdf616abd6a3960 rsyncd.conf
--- /dev/null
+# Description: Utility for incremental file transfers over networks
+# URL: http://rsync.samba.org
+# Maintainer: CRUX System Team, core-ports at crux dot nu
+# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
+# Depends on: dropbear
+
+name=rsync
+version=3.0.7
+release=1
+source=(http://rsync.samba.org/ftp/$name/src/$name-$version.tar.gz \
+ rsyncd.conf rsyncd rsync.driver)
+
+build () {
+ cd $name-$version
+
+ ./configure --build=$CHOST \
+ --host=$CTARGET \
+ --prefix=/usr \
+ --mandir=/usr/man \
+ --with-rsh=ssh \
+ --with-included-popt
+
+ make
+ make DESTDIR=$PKG install
+
+ install -d $PKG/etc/{rc.d,ports/drivers} $PKG/var/log
+ install -m 755 $SRC/rsyncd $PKG/etc/rc.d
+ install -m 644 $SRC/rsyncd.conf $PKG/etc
+ install -m 755 $SRC/rsync.driver $PKG/etc/ports/drivers/rsync
+ touch $PKG/var/log/rsyncd.log
+}