diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-03-01 20:40:50 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-03-01 20:40:50 +0100 |
commit | f23d273a395cbdfd8a1197adc3509ba3dfb4637b (patch) | |
tree | 976676e90713a1a7d3691998d8999df04b720040 /dc3dd | |
parent | 351991ce3e10dfae9cf57e7cf79fcca9b01c585b (diff) | |
download | aur-packages-f23d273a395cbdfd8a1197adc3509ba3dfb4637b.tar.gz aur-packages-f23d273a395cbdfd8a1197adc3509ba3dfb4637b.tar.xz |
update
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to 'dc3dd')
-rw-r--r-- | dc3dd/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/dc3dd/PKGBUILD b/dc3dd/PKGBUILD new file mode 100644 index 0000000..494e876 --- /dev/null +++ b/dc3dd/PKGBUILD @@ -0,0 +1,21 @@ +# Contributor: bender02 at gmx dot com +pkgname=dc3dd +pkgver=6.12.3 +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=('i686' 'x86_64') +source=(http://downloads.sf.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2) +md5sums=('9bb2ca0d3ea82c147aa2f8089914cdd0') +# sha256sums are verifiable from upstream +sha256sums=('c723a24a97291faf43e77ab91229c1bfab97156e3d2bd8ff94e9b2c261ca7ec9') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr || return 1 + make || return 1 + make DESTDIR=$pkgdir install || return 1 +} + +# vim:set ts=2 sw=2 et: |