mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 12:01:41 +02:00
31 lines
758 B
Plaintext
31 lines
758 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=apg
|
|
pkgver=2.2.3
|
|
pkgrel=3
|
|
pkgdesc="Automated Password Generator."
|
|
url="http://www.adel.nursat.kz/apg/index.shtml"
|
|
arch="all"
|
|
license="BSD"
|
|
depends=""
|
|
makedepends=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://www.adel.nursat.kz/apg/download/$pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
build() {
|
|
cd "$_builddir"
|
|
sed -i 's:^#\(CS_LIBS = -lnsl\)$:\1:' Makefile
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
for i in apg apgbfm; do
|
|
install -D -m755 $i "$pkgdir"/usr/bin/$i
|
|
install -D -m644 doc/man/$i.1 "$pkgdir"/usr/man/man1/$i.1
|
|
done
|
|
install -D -m 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
|
}
|
|
|
|
md5sums="3b3fc4f11e90635519fe627c1137c9ac apg-2.2.3.tar.gz"
|