mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
33 lines
841 B
Bash
33 lines
841 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=testdisk
|
|
pkgver=6.13
|
|
pkgrel=2
|
|
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' 'ntfs-3g')
|
|
makedepends=('pkgconfig')
|
|
source=(http://www.cgsecurity.org/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('3bcbf0722d3823ca155e633969ce9f0b')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr \
|
|
--without-ewf \
|
|
--enable-sudo
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|