summaryrefslogtreecommitdiff
path: root/community/oath-toolkit
diff options
context:
space:
mode:
Diffstat (limited to 'community/oath-toolkit')
-rw-r--r--community/oath-toolkit/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/community/oath-toolkit/PKGBUILD b/community/oath-toolkit/PKGBUILD
new file mode 100644
index 000000000..82ee965fe
--- /dev/null
+++ b/community/oath-toolkit/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 71971 2012-06-04 09:43:43Z seblu $
+# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
+# Contributor: Christian Hesse <mail@eworm.de>
+# Contributor: L42y <423300@gmail.com>
+
+pkgname=oath-toolkit
+pkgver=1.12.3
+pkgrel=1
+pkgdesc='OATH one-time password toolkit'
+arch=('i686' 'x86_64')
+url='http://www.nongnu.org/oath-toolkit/'
+license=('GPL3')
+depends=('pam')
+options=('!libtool')
+source=("http://download.savannah.nongnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('52c1d8914c4182b19dea4a82d6837eb2')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+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 ft=sh et: