mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 08:12:06 +01:00
50 lines
1.0 KiB
Plaintext
50 lines
1.0 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=dc3dd
|
|
pkgver=7.1.614
|
|
pkgrel=0
|
|
pkgdesc="Patched version of GNU dd for use in computer forensics"
|
|
url="http://dc3dd.sourceforge.net/"
|
|
arch="all"
|
|
license="GPL2+ and GPL3+"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="libiconv-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://downloads.sourceforge.net/dc3dd/dc3dd-$pkgver.tar.gz"
|
|
_builddir="$srcdir"/dc3dd-$pkgver
|
|
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
rm po/*.gmo
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--disable-nls \
|
|
--disable-rpath \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="b6c4ec16e7f539b17224d7f334f8396e dc3dd-7.1.614.tar.gz"
|