new: migrate even more packages

This commit is contained in:
ngn
2024-07-21 19:37:19 +03:00
parent 44706f4e3d
commit beea0545f8
44 changed files with 526 additions and 0 deletions

3
src/iana-etc/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/iana-etc/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 20240125
First version

22
src/iana-etc/pkg.sh Normal file
View File

@ -0,0 +1,22 @@
# general info
NAME="iana-etc"
DESC="Data for network services and protocols"
VERSION="20240125"
# required files
FILES=("https://github.com/Mic92/iana-etc/releases/download/${VERSION}/iana-etc-${VERSION}.tar.gz")
HASHES=("aed66d04de615d76c70890233081e584")
# install and build depends
DEPENDS=()
BUILD=()
build(){
tar xf "${NAME}-${VERSION}.tar.gz"
cd "${NAME}-${VERSION}"
install -dm755 "${ROOTDIR}/etc"
cp services protocols "${ROOTDIR}/etc"
cd .. && rm -r "${NAME}-${VERSION}"
}