blob: 9ab74a62ff173928727a82a393c9bf4aaa48a71b (
plain)
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.28
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
}
|