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/apg | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/apg')
-rw-r--r-- | community/apg/ChangeLog | 3 | ||||
-rw-r--r-- | community/apg/PKGBUILD | 26 |
2 files changed, 29 insertions, 0 deletions
diff --git a/community/apg/ChangeLog b/community/apg/ChangeLog new file mode 100644 index 000000000..811f87d4f --- /dev/null +++ b/community/apg/ChangeLog @@ -0,0 +1,3 @@ +2007-06-28 tardo <tardo@nagi-fanboi.net> +* Built for x86_64 + diff --git a/community/apg/PKGBUILD b/community/apg/PKGBUILD new file mode 100644 index 000000000..e5a6a2f4e --- /dev/null +++ b/community/apg/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 65041 2012-02-20 02:16:10Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: eric <eric@archlinux.org> +# Contributor: Manolis Tzanidakis + +pkgname=apg +pkgver=2.2.3 +pkgrel=3 +pkgdesc="Automated Password Generator." +arch=(i686 x86_64) +url="http://www.adel.nursat.kz/apg/index.shtml" +license=('custom') +depends=('glibc') +source=(http://www.adel.nursat.kz/apg/download/$pkgname-$pkgver.tar.gz) +md5sums=('3b3fc4f11e90635519fe627c1137c9ac') + +build() { + cd $srcdir/$pkgname-$pkgver + sed -i 's:^#\(CS_LIBS = -lnsl\)$:\1:' Makefile + make + for i in apg apgbfm; do + install -D -m755 $i $pkgdir/usr/bin/$i + install -D -m644 doc/man/$i.1 $pkgdir/usr/share/man/man1/$i.1 + done + install -D -m 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING +} |