summaryrefslogtreecommitdiff
path: root/community/extundelete/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-02-27 23:15:24 +0000
committerroot <root@rshg054.dnsready.net>2012-02-27 23:15:24 +0000
commit1f567a9d58d16b76320168f0624aa55bd6320284 (patch)
treee4e7ffadc364d582fccd8543ad1543fa9741a8a7 /community/extundelete/PKGBUILD
parentf6a79a3f5989efc8db63af942851c56f0c462bb1 (diff)
Mon Feb 27 23:15:24 UTC 2012
Diffstat (limited to 'community/extundelete/PKGBUILD')
-rw-r--r--community/extundelete/PKGBUILD22
1 files changed, 16 insertions, 6 deletions
diff --git a/community/extundelete/PKGBUILD b/community/extundelete/PKGBUILD
index 6f34fb6d0..d639a9f06 100644
--- a/community/extundelete/PKGBUILD
+++ b/community/extundelete/PKGBUILD
@@ -1,23 +1,33 @@
-# $Id: PKGBUILD 20292 2010-07-04 06:40:48Z jlichtblau $
+# $Id: PKGBUILD 66632 2012-02-26 16:13:47Z jlichtblau $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: snuo
pkgname=extundelete
pkgver=0.2.0
-pkgrel=1
+pkgrel=2
pkgdesc="Utility for recovering deleted files from ext2, ext3 or ext4 partitions by parsing the journal"
arch=('i686' 'x86_64')
url="http://extundelete.sourceforge.net"
license=('GPL')
makedepends=('e2fsprogs')
changelog=$pkgname.changelog
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('6dac74b12a747f133326ff7b81fceedd')
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2 \
+ $pkgname-build.patch)
+sha256sums=('0f6a3004d8ddcafe63059a104c174f753c7fc95455081f3ff5aaf3b8c100f97b'
+ '6e59a025b98838f43146a9309f5c84b09ca8a314e90a6c9f68837d23ee4d9443')
build() {
cd ${srcdir}/$pkgname-$pkgver
+#http://patch-tracker.debian.org/package/extundelete/0.2.0-2
+ patch -Np1 -i ${srcdir}/$pkgname-build.patch
+
./configure --prefix=/usr
- make || return 1
+ make
+}
+
+package() {
+ cd ${srcdir}/$pkgname-$pkgver
+
make DESTDIR=${pkgdir} install
-} \ No newline at end of file
+}