18 lines
421 B
Plaintext
18 lines
421 B
Plaintext
# Description: CRUX's portdb command line client
|
|
# URL: https://github.com/sepen/portdbc
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: curl libxml2
|
|
|
|
name=portdbc
|
|
version=1.2
|
|
release=1
|
|
source=(https://github.com/sepen/portdbc/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
autoreconf -fvi
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG MANDIR=/usr/share/man install
|
|
}
|