blob: d07eb31eba5c1d88593d512dc40fb6c67b45036f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: David P. <megver83@parabola.nu>
# Maintainer (Artix): Nathan Owens <ndowens @ artixlinux.org>
# Submitter (Artix): alium@artixlinux.org
pkgname=firewalld-openrc
pkgver=20210505
pkgrel=1
pkgdesc="OpenRC firewalld init script"
arch=('any')
url="https://gitea.artixlinux.org/packagesF/firewalld-openrc"
license=('GPL2')
groups=('openrc-galaxy')
provides=('init-firewalld')
conflicts=('init-firewalld')
source=("firewalld.initd")
sha256sums=('53ed08a1e2a45fae27e3dd30022b91f71801092332d158af0467f78723d56fd1')
package() {
depends=('openrc' 'firewalld')
install -Dm755 "$srcdir/firewalld.initd" "$pkgdir/etc/init.d/firewalld"
}
|