2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: The iptables stateful packet filtering firewall builder.
|
2017-04-19 01:39:05 +02:00
|
|
|
|
# URL: http://firehol.sourceforge.net
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: iptables iproute2 iprange ipset
|
2017-04-19 01:39:05 +02:00
|
|
|
|
|
2017-10-28 14:10:23 +02:00
|
|
|
|
isim=firehol
|
|
|
|
|
surum=3.1.3
|
|
|
|
|
devir=1.0
|
|
|
|
|
kaynak=(https://github.com/firehol/firehol/releases/download/v3.1.3/firehol-3.1.3.tar.xz)
|
2017-04-19 01:39:05 +02:00
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2017-10-28 14:10:23 +02:00
|
|
|
|
cd "$isim-$surum"
|
2017-04-19 01:39:05 +02:00
|
|
|
|
./configure \
|
|
|
|
|
--prefix=/usr \
|
|
|
|
|
--sbindir=/usr/bin \
|
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
|
--libexecdir=/usr/lib
|
|
|
|
|
make
|
|
|
|
|
make install DESTDIR="$PKG"
|
|
|
|
|
touch "$PKG"/etc/firehol/fire{hol,qos}.conf
|
|
|
|
|
}
|