diff options
author | root <root@rshg054.dnsready.net> | 2012-02-23 23:15:11 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-02-23 23:15:11 +0000 |
commit | d466ef49f224a9347fe0375eac8126725e10a0a4 (patch) | |
tree | c08a9d7437c4d6de169858ac98fb340fd90202c2 /community-testing | |
parent | 1d9fb21dff6df1679e536ab672edcbbdb4cf3a15 (diff) |
Thu Feb 23 23:15:11 UTC 2012
Diffstat (limited to 'community-testing')
-rw-r--r-- | community-testing/ext4magic/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community-testing/ext4magic/PKGBUILD b/community-testing/ext4magic/PKGBUILD new file mode 100644 index 000000000..a17da046f --- /dev/null +++ b/community-testing/ext4magic/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 66083 2012-02-23 00:12:41Z seblu $ +# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> + +pkgname=ext4magic +pkgver=0.3.0 +pkgrel=1 +pkgdesc='Linux admin tool, can help to recover deleted or overwritten files on ext3 and ext4 filesystems' +arch=('i686' 'x86_64') +url='http://developer.berlios.de/projects/ext4magic/' +license=('GPL2') +depends=('bzip2' 'file' 'util-linux' 'e2fsprogs') +source=("http://download.berlios.de/$pkgname/$pkgname-$pkgver.tar.gz") +md5sums=('54ed503730b7e279c5cddc99a8821de3') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 ft=sh et: |