22 lines
517 B
Plaintext
22 lines
517 B
Plaintext
pkgname="iana-etc"
|
|
pkgver="20250123"
|
|
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/${pkgver}/${sources[0]}")
|
|
md5sums=("f8a0ebdc19a5004cf42d8bdcf614fa5d")
|
|
license=('custom:none')
|
|
|
|
src_prepare() {
|
|
tar -xf ${distdir}/${sources[0]} --strip-components=1
|
|
}
|
|
|
|
src_build() {
|
|
:
|
|
}
|
|
|
|
src_install() {
|
|
install -d "${pkgdir}/etc"
|
|
cp services protocols "${pkgdir}/etc"
|
|
}
|