summaryrefslogtreecommitdiff
path: root/community/xdelta3/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/xdelta3/PKGBUILD
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/xdelta3/PKGBUILD')
-rw-r--r--community/xdelta3/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/community/xdelta3/PKGBUILD b/community/xdelta3/PKGBUILD
new file mode 100644
index 000000000..1af2efff6
--- /dev/null
+++ b/community/xdelta3/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 90967 2013-05-16 19:50:32Z bpiotrowski $
+# Maintainer: Allan McRae <allan@archlinux.org>
+# Contributor: Eduard "bekks" Warkentin <eduard.warkentin@gmail.com>
+# Contributor: Henning Garus <henning.garus@gmail.com>
+
+pkgname=xdelta3
+pkgver=3.0.7
+pkgrel=1
+pkgdesc="Diff utility which works with binary files"
+arch=('i686' 'x86_64')
+url="http://xdelta.org/"
+license=('GPL')
+depends=('xz')
+source=(http://xdelta.googlecode.com/files/$pkgname-$pkgver.tar.gz)
+md5sums=('ef6631e4f9219a80bcb9e3020962b6ec')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+check() {
+ cd $pkgname-$pkgver
+ ./xdelta3 test
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}