diff options
Diffstat (limited to 'community/chntpw/PKGBUILD')
-rw-r--r-- | community/chntpw/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/community/chntpw/PKGBUILD b/community/chntpw/PKGBUILD new file mode 100644 index 000000000..16c8f504c --- /dev/null +++ b/community/chntpw/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 64647 2012-02-17 13:33:11Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: Tobias Powalowski <tpowa@archlinux.org> + +pkgname=chntpw +pkgver=110511 +pkgrel=2 +pkgdesc='Offline NT Password Editor - reset passwords in a Windows NT SAM user database file.' +arch=('i686' 'x86_64') +url='http://pogostick.net/~pnh/ntpasswd/' +license=('GPL' 'LGPL') +makedepends=('openssl') +source=("http://pogostick.net/~pnh/ntpasswd/${pkgname}-source-${pkgver}.zip") +md5sums=('a3fb358d1adec589cd6bc8dedf68896c') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + [ "$CARCH" = "x86_64" ] && sed -i "s|CFLAGS= -DUSEOPENSSL -g -I. -I\$(OSSLINC) -Wall -m32|CFLAGS= -DUSEOPENSSL -g -I. -I\$(OSSLINC) -Wall|" Makefile + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + # install binaries, don't install static binaries! + install -Dm0755 "${srcdir}/${pkgname}-${pkgver}/${pkgname}" "${pkgdir}/usr/bin/${pkgname}" + install -Dm0755 "${srcdir}/${pkgname}-${pkgver}/reged" "${pkgdir}/usr/bin/reged" + install -Dm0755 "${srcdir}/${pkgname}-${pkgver}/cpnt" "${pkgdir}/usr/bin/cpnt" + + for _f in *.txt; do + install -Dm0644 "${_f}" "${pkgdir}/usr/share/doc/${pkgname}/${_f}" + done +} |