1
0
forked from ports/opt

portdbc: 1.1 -> 1.2; adopted port

This commit is contained in:
Tim Biermann 2021-01-30 15:39:50 +00:00
parent cd5884f4ee
commit 2e04a4bc6e
3 changed files with 14 additions and 14 deletions

View File

@ -1,6 +1,6 @@
drwxr-xr-x root/root bin/
-rwxr-xr-x root/root bin/portdbc
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/portdbc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man8/

View File

@ -1,6 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/a8fpil8Wq221jMWNnBRax6LPsEm9qIlgytpHwpfUIx3Rk/XW0aoLt421DgwuHcsrH1S/g56tcE7PVgYIPbAVgY=
SHA256 (Pkgfile) = 463c3c837518f95515f596125c354d2bcf1ffe5e783431379965a46cf09bc9e3
SHA256 (.footprint) = 579fe0bf42746aa53ee020277ac7ecc861e0ff4c19afd8d35fb90e4469ab878f
SHA256 (portdbc-1.1.tar.bz2) = a141b35e7f7c4cf24cb9f4629c13f1accf901331ed23871f2a4ef1b3d991abc2
SHA256 (fixups.patch) = f29f701321a8fc75d7a769002ca0e6e9d4c55afdd939d98a7d63f6c1f83d129e
RWSE3ohX2g5d/TO+8CIIP+AykgLCMZYz4Ha8HHs2/Oh/Ra4L5ZQX/6h/r+rRf5qnDfdT02o51bLbFV4s4SGhM9isg0bszddi8gQ=
SHA256 (Pkgfile) = b47015b05dc3343ccb16907fe538153f37fea507e05596cc75889acc6e9b1be1
SHA256 (.footprint) = 820e6295a17aa52cbcd41f21688898735b3014a9143b4d88a03f16919a608a3c
SHA256 (portdbc-1.2.tar.gz) = 8af5693d0035d1e711fa408d26bacb8658ec92302edfedf917f7769e6d0147f4

View File

@ -1,17 +1,18 @@
# Description: CRUX's portdb command line client
# URL: https://github.com/sepen/portdbc
# Maintainer: Fredrik Rinnestam, fredrik at crux dot guru
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: curl libxml2
name=portdbc
version=1.1
release=5
source=(https://crux.nu/files/$name-$version.tar.bz2 fixups.patch)
version=1.2
release=1
_commit=ba7ff2c4189b12b020c9e7a4a054c6721692afc0
source=(https://github.com/sepen/portdbc/archive/$_commit/$name-$version.tar.gz)
build() {
cd $name-$version
patch -p1 < $SRC/fixups.patch
cd $name-$_commit
autoreconf -fvi
./configure --prefix=/usr
make
make DESTDIR=$PKG MANDIR=/usr/share/man install
}