new: sys/iana-etc-20240806

This commit is contained in:
wyj
2024-11-12 02:26:23 -05:00
parent e2f840f2f6
commit 07b4741cab
+23
View File
@@ -0,0 +1,23 @@
pkgname="iana-etc"
pkgver="20240806"
pkgdesc='/etc/protocols and /etc/services provided by IANA'
homepage="https://www.iana.org/protocols"
sources=("${pkgname}-${pkgver}.tar.gz")
urls=('https://github.com/Mic92/iana-etc/releases/download/20240806/iana-etc-20240806.tar.gz')
md5sums=("ea3c37c00d22f1159fc3b7d988de8476")
license=('custom:none')
distdir=${DIST_DIR}/${pkgname}-${pkgver}
src_prepare() {
tar -xf ${DIST_DIR}/${pkgname}-${pkgver}/${sources[0]} --strip-components=1
}
src_build() {
:
}
src_install() {
install -d "${pkgdir}/etc"
cp services protocols "${pkgdir}/etc"
}