mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
35 lines
920 B
Bash
35 lines
920 B
Bash
# Maintainer: Tom K <tomk@runbox.com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - patch for ARM fix (http://sourceforge.net/p/netcat/bugs/23/)
|
|
|
|
pkgname=gnu-netcat
|
|
pkgver=0.7.1
|
|
pkgrel=8
|
|
pkgdesc="GNU rewrite of netcat, the network piping application"
|
|
depends=('glibc' 'texinfo')
|
|
arch=('x86_64')
|
|
url="http://netcat.sourceforge.net/"
|
|
license=('GPL')
|
|
replaces=('netcat')
|
|
provides=('netcat')
|
|
source=("https://downloads.sourceforge.net/sourceforge/netcat/netcat-$pkgver.tar.bz2"
|
|
'gnu-netcat-flagcount.patch')
|
|
md5sums=('0a29eff1736ddb5effd0b1ec1f6fe0ef'
|
|
'fccdd10bf84b18ba4e1d9ef2677e038c')
|
|
|
|
prepare() {
|
|
cd "${srcdir}/netcat-${pkgver}"
|
|
patch -p1 -i ../gnu-netcat-flagcount.patch
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/netcat-${pkgver}"
|
|
./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/netcat-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|