diff options
Diffstat (limited to 'community/ext3grep/PKGBUILD')
-rw-r--r-- | community/ext3grep/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/ext3grep/PKGBUILD b/community/ext3grep/PKGBUILD new file mode 100644 index 000000000..4e70cdc95 --- /dev/null +++ b/community/ext3grep/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 20288 2010-07-04 06:26:43Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: ivh + +pkgname=ext3grep +pkgver=0.10.2 +pkgrel=1 +pkgdesc="A tool to investigate an ext3 file system for deleted content and possibly recover it" +arch=('i686' 'x86_64') +url="http://code.google.com/p/ext3grep/" +license=('GPL') +depends=('gcc-libs') +makedepends=('e2fsprogs') +changelog=$pkgname.changelog +source=(http://ext3grep.googlecode.com/files/$pkgname-$pkgver.tar.gz) +md5sums=('38e134734d6c8856370ed00a9c73dbee') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + ./configure --prefix=/usr + make || return 1 + make DESTDIR=${pkgdir} install +} |