mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
25 lines
686 B
Bash
25 lines
686 B
Bash
pkgname=dc3dd
|
|
pkgver=7.2.641
|
|
pkgrel=1
|
|
pkgdesc="A patched version of dd that includes a number of features useful for computer forensics."
|
|
url="http://dc3dd.sourceforge.net/"
|
|
license=("GPL3")
|
|
arch=('x86_64')
|
|
makedepends=('autoconf' 'gperf' 'perl-locale-gettext')
|
|
categories=('utils')
|
|
changelog=ChangeLog
|
|
source=(http://downloads.sf.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
sha512sums=('9afa57bfbfce00778130eb75b4add915f132ad2b19d9271faed87f807bb646d2083e1bd5b09acfa378a50e894c57d65472263cd7966acf45c30d174754cdf6c8')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|