diff options
-rw-r--r-- | community/chntpw/APKBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/community/chntpw/APKBUILD b/community/chntpw/APKBUILD index 86f00e4e07..ccc782e195 100644 --- a/community/chntpw/APKBUILD +++ b/community/chntpw/APKBUILD @@ -2,12 +2,13 @@ # Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> pkgname=chntpw pkgver=140201 -pkgrel=1 +pkgrel=2 pkgdesc="Change passwords in Windows SAM files" url="http://pogostick.net/~pnh/ntpasswd/" arch="all" +options="!check" license="GPL-2.0" -makedepends="libressl-dev" +makedepends="openssl-dev" source="http://pogostick.net/~pnh/ntpasswd/$pkgname-source-$pkgver.zip stdint.patch" builddir="$srcdir/$pkgname-$pkgver" @@ -15,7 +16,7 @@ builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" make CC="${CC:-gcc}" CFLAGS="$CFLAGS -DUSEOPENSSL" LIBS="-lcrypto" \ - chntpw cpnt reged || return 1 + chntpw cpnt reged } package() { |