diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-06-15 22:58:03 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-06-16 11:00:28 -0300 |
commit | cf239da6d45fb1b2f557d71722ebcde315994cf7 (patch) | |
tree | 57154b76e4761af71cb1c1fa0cd42b777e818f76 /community | |
parent | ef91c73125459166cd59c056cccc256dc8433077 (diff) | |
download | aports-cf239da6d45fb1b2f557d71722ebcde315994cf7.tar.bz2 aports-cf239da6d45fb1b2f557d71722ebcde315994cf7.tar.xz |
community/google-authenticator: upgrade to 1.06
Diffstat (limited to 'community')
-rw-r--r-- | community/google-authenticator/APKBUILD | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/community/google-authenticator/APKBUILD b/community/google-authenticator/APKBUILD index 6c0e1d4215..af14590ebf 100644 --- a/community/google-authenticator/APKBUILD +++ b/community/google-authenticator/APKBUILD @@ -1,25 +1,24 @@ # Contributor: Fabio Napoleoni <f.napoleoni@gmail.com> # Maintainer: Fabio Napoleoni <f.napoleoni@gmail.com> pkgname=google-authenticator -pkgver=1.05 +pkgver=1.06 pkgrel=0 pkgdesc="Google Authenticator PAM module" +options="checkroot !check" # 1 of 2 tests fail url="https://github.com/google/google-authenticator-libpam" arch="all" license="Apache-2.0" -makedepends="autoconf automake libtool linux-pam-dev m4 libressl-dev" +makedepends="autoconf automake libtool linux-pam-dev m4 openssl-dev" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/google/google-authenticator-libpam/archive/$pkgver.tar.gz" builddir="$srcdir/$pkgname-libpam-$pkgver" prepare() { - cd "$builddir" default_prepare ./bootstrap.sh } build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -32,7 +31,6 @@ build() { } package() { - cd "$builddir" make DESTDIR="$pkgdir" install mkdir -p "$pkgdir/etc/pam.d" echo -e "auth\trequired\tpam_google_authenticator.so" \ @@ -40,8 +38,7 @@ package() { } check() { - cd "$builddir" make check } -sha512sums="d97b26c6181dbce0612628484db37b1bf61e984fb2fb3d4974d04038e564404aa17415368dba524f0d17d96ec8d57ae4129b27f0c672d849d16ef03941d87996 google-authenticator-1.05.tar.gz" +sha512sums="a278360be1a3c5a03ddb38d40be45dbba16b6f565ee919377a918565bd8c567ce261890dc10d277edea4f469cf1da1d9cf2c9f3ccfeef8c6887d713c785a5440 google-authenticator-1.06.tar.gz" |