mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
744 B
Bash
22 lines
744 B
Bash
# $Id: PKGBUILD 47608 2009-07-24 10:38:51Z tpowa $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Michal Krenek <mikos@sg1.cz>
|
|
|
|
pkgname=testdisk
|
|
pkgver=6.11
|
|
pkgrel=1
|
|
pkgdesc="Tool to check and undelete partition and recover pictures from digital camera memory"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.cgsecurity.org/index.html?testdisk.html"
|
|
license=('GPL')
|
|
depends=('e2fsprogs' 'openssl' 'progsreiserfs' 'ntfsprogs' 'libjpeg')
|
|
source=(http://www.cgsecurity.org/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('11f8fe95dcd190b69b782efa65b29ba1')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|