aboutsummaryrefslogtreecommitdiffstats
path: root/testing/oath-toolkit/APKBUILD
blob: 0339ddb6dde57a22eafdb32be4d5f7fc8083942e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Contributor: Jann - Ove Risvik <jann.ove@dev.usaklig.com>
# Maintainer:
pkgname=oath-toolkit
pkgver=2.6.1
pkgrel=0
pkgdesc="OATH Toolkit One-time password components"
url="http://www.nongnu.org/oath-toolkit/index.html"
arch="all"
license="various"
depends=""
depends_dev="perl cvs diffutils"
makedepends="$depends_dev linux-pam-dev"
install=""
subpackages="$pkgname-dev $pkgname-doc $pkgname-liboath $pkgname-oathtool $pkgname-pam_oath"
source="http://download.savannah.gnu.org/releases/oath-toolkit/oath-toolkit-${pkgver}.tar.gz"

builddir="oath-toolkit-${pkgver}"
build() {
	cd "$srcdir/$builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--localstatedir=/var \
		|| return 1
	make || return 1
	make check || 1
}

package() {
	cd "$srcdir/$builddir"
	make DESTDIR="$pkgdir"  install || return 1
}

liboath() {
pkgdesc="A shared and static C library for OATH handling."
license="LGPL2.1+"
       mkdir -p "$subpkgdir"/usr/lib
       mv "$pkgdir"/usr/lib/liboath.so* "$subpkgdir"/usr/lib
}

oathtool() {
	depends="oath-toolkit-liboath"
	pkgdesc="A command line tool for generating and validating OTPs."
	license="GPLv3.0+"
       mkdir -p "$subpkgdir"/usr/bin
       mv "$pkgdir"/usr/bin/oathtool "$subpkgdir"/usr/bin
}

pam_oath() {
        depends="oath-toolkit-liboath"
	license="GPL3.0+"
	pkgdesc="A PAM module for pluggable login authentication for OATH."
       mkdir -p "$subpkgdir"/lib/security
       mv "$pkgdir"/usr/lib/security/pam_oath.so "$subpkgdir"/lib/security
}


md5sums="19ee7ed7c2b40c1dc92887f893ed2726  oath-toolkit-2.6.1.tar.gz"
sha256sums="9c57831907bc26eadcdf90ba1827d0bd962dd1f737362e817a1dd6d6ec036f79  oath-toolkit-2.6.1.tar.gz"
sha512sums="59feadbc06d11a52bf5879493227c40358fc1f4f17ec3ff92e3a313e47b92f3154396fa3ff38ef163852b32c8bfcef1f59753b614d0138478b8f7e7971f55e62  oath-toolkit-2.6.1.tar.gz"