X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from jeremythomerson.com (mail.jeremythomerson.com [74.117.189.38]) by lists.alpinelinux.org (Postfix) with ESMTP id 0DEE71EB587 for ; Mon, 25 Oct 2010 05:51:25 +0000 (UTC) Received: from localhost.localdomain (174-148-73-139.pools.spcsdns.net [174.148.73.139]) by jeremythomerson.com (Postfix) with ESMTP id E4B4D1C78B; Mon, 25 Oct 2010 00:56:32 -0500 (CDT) From: Jeremy Thomerson To: alpine-devel@lists.alpinelinux.org Cc: Jeremy Thomerson Subject: [alpine-devel] [PATCH 1/2] create new package for librsync Date: Thu, 21 Oct 2010 05:08:38 +0000 Message-Id: <1287637719-9886-1-git-send-email-jeremy@thomersonfamily.com> X-Mailer: git-send-email 1.7.3.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: this package was created because I wanted rdiff-backup, and it requires librsync --- testing/librsync/APKBUILD | 29 +++++++++++++++++++++++++++++ 1 files changed, 29 insertions(+), 0 deletions(-) create mode 100644 testing/librsync/APKBUILD diff --git a/testing/librsync/APKBUILD b/testing/librsync/APKBUILD new file mode 100644 index 0000000..965a274 --- /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" -- 1.7.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---