blob: 78c094e4a0969ed388a852fcc21300ff2d31282b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $Id: PKGBUILD 91796 2010-09-28 06:24:38Z tpowa $
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
pkgname=chntpw
pkgver=100627
pkgrel=1
pkgdesc="The Offline NT Password Editor - enables you to view some information and change user passwords in a Windows NT SAM userdatabase 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=('8b046c2073f27eed728e18635ba72dd4')
sha1sums=('4b2a7e7a406ca9ecb68c9ab4fb6012864828806d')
build() {
if [ "$CARCH" = "x86_64" ]; then
cd ${srcdir}/${pkgname}-${pkgver}
sed -i "s|CFLAGS= -DUSEOPENSSL -g -I. -I\$(OSSLINC) -Wall -m32|CFLAGS= -DUSEOPENSSL -g -I. -I\$(OSSLINC) -Wall|" Makefile
fi
cd ${srcdir}/${pkgname}-${pkgver}
make
# install binaries, don't install static binaries!
install -Dm755 ${srcdir}/${pkgname}-${pkgver}/${pkgname} ${pkgdir}/usr/bin/${pkgname}
install -Dm755 ${srcdir}/${pkgname}-${pkgver}/reged ${pkgdir}/usr/bin/reged
install -Dm755 ${srcdir}/${pkgname}-${pkgver}/cpnt ${pkgdir}/usr/bin/cpnt
for doc in *.txt; do
install -Dm644 ${doc} ${pkgdir}/usr/share/doc/${pkgname}/${doc}
done
}
|