24 lines
591 B
Plaintext
24 lines
591 B
Plaintext
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"
|
|
}
|