-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKGBUILD
24 lines (22 loc) · 882 Bytes
/
PKGBUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Maintainer: Klimenko Maxim Sergievich <klimenkomaximsergievich@gmail.com>
# Contributor: Klimenko Maxim Sergievich <klimenkomaximsergievich@gmail.com>
pkgname=simple-stateful-firewall
pkgver=0.0.23
pkgrel=1
pkgdesc="Simple Stateful Firewall. For personal computers or you can change this by yourself"
arch=('i686' 'x86_64')
url="https://github.com/asciiscry3r/simple-stateful-firewall"
license=('GPL2')
depends=('iptables')
optdepends=('opensnitch: A GNU/Linux application firewall')
makedepends=('git')
source=("https://github.com/asciiscry3r/simple-stateful-firewall/archive/refs/tags/${pkgver}.tar.gz")
sha1sums=('SKIP')
conflicts=('simple-stateful-firewall')
provides=('simple-stateful-firewall')
install="simplestatefulfirewall.install"
package() {
echo "Fakeroot directory is ${pkgdir}/"
cd "${pkgname}-${pkgver}" || exit 1
make DESTDIR="${pkgdir}/" install
}