blob: ca6953659b3002c3de75786638783025df9e5ea3 (
plain)
1 # Description: CRUX's portdb command line client
2 # URL: https://github.com/sepen/portdbc
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: curl libxml2
5
6 name=portdbc
7 version=1.2
8 release=1
9 _commit=ba7ff2c4189b12b020c9e7a4a054c6721692afc0
10 source=(https://github.com/sepen/portdbc/archive/$_commit/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$_commit
14 autoreconf -fvi
15 ./configure --prefix=/usr
16 make
17 make DESTDIR=$PKG MANDIR=/usr/share/man install
18 }
|