mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
37 lines
1.5 KiB
Bash
37 lines
1.5 KiB
Bash
# Maintainer: Krzysztof "hiciu" Warzecha <kwarzecha7@gmail.com>
|
|
pkgname=tcp_wrappers
|
|
pkgver=7.6
|
|
pkgrel=2
|
|
pkgdesc="Monitors and Controls incoming TCP connections"
|
|
arch=(arm)
|
|
url="ftp://ftp.porcupine.org/pub/security/index.html"
|
|
license=('custom')
|
|
groups=('base')
|
|
backup=(etc/hosts.allow etc/hosts.deny)
|
|
depends=('bash' 'glibc')
|
|
source=(ftp://ftp.porcupine.org/pub/security/${pkgname}_$pkgver.tar.gz \
|
|
hosts.allow hosts.deny try-from.8 safe_finger.8 gcc340.patch \
|
|
shared_lib_plus_plus-1.patch)
|
|
md5sums=('e6fa25f71226d090f34de3f6b122fb5a'
|
|
'384d92ca12f5950436d09a5cf8255cd6'
|
|
'a0ee30f6aeaca241c4d44f7c177eca6b'
|
|
'4a8f40f9a69f0848df92b232072e8561'
|
|
'1a6d7b11abb1fd69ace775d02a1c72cf'
|
|
'19c3badd4fbee547eb9de61ed93691af'
|
|
'e39dc7e099b741b6d2b1799a56ab77af')
|
|
|
|
build() {
|
|
cd $startdir/src/${pkgname}_$pkgver
|
|
patch -Np1 -i ../gcc340.patch || return 1
|
|
patch -Np1 -i ../shared_lib_plus_plus-1.patch || return 1
|
|
make REAL_DAEMON_DIR=/usr/sbin STYLE=-DSYS_ERRLIST_DEFINED linux || return 1
|
|
# dumb makefile
|
|
mkdir -p $startdir/pkg/usr/{include,lib,sbin}
|
|
mkdir -p $startdir/pkg/usr/share/man/man{3,5,8}
|
|
make DESTDIR=$startdir/pkg install
|
|
install -D -m644 ../hosts.allow $startdir/pkg/etc/hosts.allow
|
|
install -D -m644 ../hosts.deny $startdir/pkg/etc/hosts.deny
|
|
# install license
|
|
mkdir -p $startdir/pkg/usr/share/licenses/$pkgname
|
|
install -m644 DISCLAIMER $startdir/pkg/usr/share/licenses/$pkgname/license.txt
|
|
}
|