Search Criteria
Package Details: mod_authn_otp 1.1.9-2
Git Clone URL: | https://aur.archlinux.org/mod_authn_otp.git (read-only, click to copy) |
---|---|
Package Base: | mod_authn_otp |
Description: | Apache module for one time password authentication |
Upstream URL: | https://github.com/archiecobbs/mod-authn-otp |
Licenses: | |
Submitter: | Arthur |
Maintainer: | chrbayer |
Last Packager: | chrbayer |
Votes: | 2 |
Popularity: | 0.000000 |
First Submitted: | 2012-06-27 20:37 |
Last Updated: | 2020-09-22 11:46 |
Latest Comments
chrbayer commented on 2020-09-22 11:54
Done, homepage has been updated.
micwoj92 commented on 2020-09-20 15:19
Hello, could you update homepage to github?
adambot commented on 2017-03-26 23:40
PKGBUILD is out of date.
Please update to be more like the following:
pkgname=mod_authn_otp
pkgver=1.1.7
pkgrel=2
pkgdesc="Apache module for one time password authentication"
arch=('i686' 'x86_64')
license=('apache-2.0')
url="https://github.com/archiecobbs/mod-authn-otp"
depends=('apache'
'openssl')
makedepends=('pkgconfig')
source=(https://github.com/archiecobbs/mod-authn-otp/archive/master.zip)
sha256sums=('0ec607beb6e07de321d5ab70841bbd2e32ba109b50f3919a379e0d7172f08564')
build() {
cd "mod-authn-otp-master"
./autogen.sh
./configure
make
}
package() {
cd "$srcdir/mod-authn-otp-master"
make DESTDIR="${pkgdir}" install
}