Hello,
I've included PKGBUILD files for both s6-dns and s6-networking. I think
it would be a great addition to add them to the packages that are
offered in Artix. This is my first time writing PKGBUILD files so
feedback is much appreciated.
Thanks,
Moody
# s6-dns
# Maintainer: Jacob Moody <moody at posixcafe.org>
pkgname=s6-dns
pkgver=2.3.2.0
pkgrel=1
epoch=0
pkgdesc="A suite of DNS client programs and libraries for UNIX systems"
arch=('x86_64')
url="https://skarnet.org/software/s6-dns/"
license=('ISC')
groups=()
depends=()
makedepends=('gcc' 'glibc' 'skalibs' 'make')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://codeload.github.com/skarnet/$pkgname/tar.gz/v$pkgver")
noextract=()
sha256sums=('75e7c06d296f81360b5cf0273253d905e9439ab31d93cdb0aff79d4e3fe91607')
validpgpkeys=()
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
# s6-networking
# Maintainer: Jacob Moody <moody at posixcafe.org>
pkgname=s6-networking
pkgver=2.3.1.2
pkgrel=1
epoch=0
pkgdesc="A suite of small networking tools for UNIX systems."
arch=('x86_64')
url="https://skarnet.org/software/s6-networking/"
license=('ISC')
groups=()
depends=('s6' 'libressl' 'execline')
makedepends=('gcc' 'glibc' 'skalibs' 'make' 's6-dns')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://codeload.github.com/skarnet/$pkgname/tar.gz/v$pkgver")
noextract=()
sha256sums=('6c6886bf594805c23c893e42c77a96f8a0d9bad302985387795f2b6f00b761c4')
validpgpkeys=()
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr --with-lib=/usr/lib/s6-dns/
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
More information about the artix-general
mailing list