From b609077771fef3922837982a088b8901bb3f4e90 Mon Sep 17 00:00:00 2001 From: Jeremy Thomerson Date: Thu, 21 Oct 2010 05:08:38 +0000 Subject: create new package for librsync this package was created because I wanted rdiff-backup, and it requires librsync --- testing/librsync/APKBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 testing/librsync/APKBUILD (limited to 'testing') diff --git a/testing/librsync/APKBUILD b/testing/librsync/APKBUILD new file mode 100644 index 0000000000..965a2744c4 --- /dev/null +++ b/testing/librsync/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: Jeremy Thomerson +# Maintainer: Jeremy Thomerson +pkgname=librsync +pkgver=0.9.7 +pkgrel=0 +pkgdesc="librsync implements the rolling-checksum algorithm of rsync" +url="http://sourceforge.net/projects/librsync/" +license="LGPL 2.1" +depends="" +makedepends="" +install= +subpackages="$pkgname-dev" +source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver + +build() { + cd "$_builddir" + + ./configure --prefix=/usr --mandir=/usr/share/man --enable-shared + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="24cdb6b78f45e0e83766903fd4f6bc84 librsync-0.9.7.tar.gz" -- cgit v1.2.3