summaryrefslogtreecommitdiff
path: root/community/chntpw
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/chntpw
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/chntpw')
-rw-r--r--community/chntpw/PKGBUILD34
1 files changed, 0 insertions, 34 deletions
diff --git a/community/chntpw/PKGBUILD b/community/chntpw/PKGBUILD
deleted file mode 100644
index 16c8f504c..000000000
--- a/community/chntpw/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# $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
-}