mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 21:57:17 +08:00
27 lines
833 B
Bash
27 lines
833 B
Bash
# $Id: PKGBUILD 75596 2010-04-01 22:40:17Z giovanni $
|
|
# 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.3
|
|
pkgrel=3
|
|
pkgdesc="Checks and undeletes partitions + PhotoRec, signature based recovery tool"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.cgsecurity.org/index.html?testdisk.html"
|
|
license=('GPL')
|
|
depends=('libjpeg>=8' 'openssl' 'progsreiserfs' 'ntfsprogs')
|
|
makedepends=('pkgconfig')
|
|
source=(http://www.cgsecurity.org/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('ceee384a8613d8f7ffff5ccfa3fba510')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--without-ewf \
|
|
--enable-sudo
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}/" install || return 1
|
|
}
|