diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/oath-toolkit | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/oath-toolkit')
-rw-r--r-- | community/oath-toolkit/PKGBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/community/oath-toolkit/PKGBUILD b/community/oath-toolkit/PKGBUILD new file mode 100644 index 000000000..9b6bee941 --- /dev/null +++ b/community/oath-toolkit/PKGBUILD @@ -0,0 +1,37 @@ +# $Id: PKGBUILD 94352 2013-07-22 08:32:55Z seblu $ +# Maintainer: Sébastien Luttringer +# Contributor: Christian Hesse <mail@eworm.de> +# Contributor: L42y <423300@gmail.com> + +pkgname=oath-toolkit +pkgver=2.4.0 +pkgrel=1 +pkgdesc='OATH one-time password toolkit' +arch=('i686' 'x86_64') +url='http://www.nongnu.org/oath-toolkit/' +license=('GPL3') +depends=('glibc' 'pam' 'xmlsec') +options=('!libtool') +source=("http://download.savannah.nongnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz") +md5sums=('456774fbc37d5267e4e8920694b7ad48') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +check() { + cd $pkgname-$pkgver + make check +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install + # Install basic docs too + install -D -m 644 pam_oath/README "$pkgdir/usr/share/doc/$pkgname/PAM_README" + install -D -m 644 README "$pkgdir/usr/share/doc/$pkgname/README" +} + +# vim:set ts=2 sw=2 et: |