30 lines
1 KiB
Text
30 lines
1 KiB
Text
# Template file for 'openbsd-netcat'
|
|
pkgname=openbsd-netcat
|
|
version=1.105_7
|
|
revision=2
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libbsd-devel"
|
|
provides="netcat-${version}_${revision}"
|
|
replaces="netcat>=0"
|
|
short_desc="TCP/IP swiss army knife (OpenBSD/Debian variant)"
|
|
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
|
license="BSD"
|
|
homepage="http://packages.debian.org/sid/netcat-openbsd"
|
|
distfiles="${DEBIAN_SITE}/main/n/netcat-openbsd/netcat-openbsd_${version%_*}.orig.tar.gz
|
|
${DEBIAN_SITE}/main/n/netcat-openbsd/netcat-openbsd_${version/_/-}.debian.tar.gz"
|
|
checksum="40653fe66c1516876b61b07e093d826e2a5463c5d994f1b7e6ce328f3edb211e
|
|
eee759327ffea293e81d0dde67921b7fcfcad279ffd7a2c9d037bbc8f882b363"
|
|
wrksrc="netcat-openbsd-${version%_*}"
|
|
|
|
do_build() {
|
|
cat ../debian/patches/*.patch | patch -p1
|
|
make ${makejobs} \
|
|
CFLAGS="$CFLAGS -DDEBIAN_VERSION=\"\\\"${version}\\\"\" $(pkg-config libbsd --cflags)" \
|
|
LDFLAGS="$LDFLAGS $(pkg-config libbsd --libs)"
|
|
}
|
|
|
|
do_install() {
|
|
vbin nc
|
|
ln -sf nc ${DESTDIR}/usr/bin/netcat
|
|
vman nc.1
|
|
}
|