diff options
Diffstat (limited to 'community/extundelete/PKGBUILD')
-rw-r--r-- | community/extundelete/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/extundelete/PKGBUILD b/community/extundelete/PKGBUILD new file mode 100644 index 000000000..6f34fb6d0 --- /dev/null +++ b/community/extundelete/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 20292 2010-07-04 06:40:48Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: snuo + +pkgname=extundelete +pkgver=0.2.0 +pkgrel=1 +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') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + ./configure --prefix=/usr + make || return 1 + make DESTDIR=${pkgdir} install +}
\ No newline at end of file |