1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-18 03:26:14 +02:00

Add iana-etc package

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
David Oberhollenzer 2018-02-11 18:16:23 +01:00
parent 2235d8e6a0
commit 73aad9f191
3 changed files with 26 additions and 0 deletions

View file

@ -23,3 +23,4 @@ openrc
procps-ng
psmisc
file
iana-etc

View file

@ -26,3 +26,4 @@ openrc
procps-ng
psmisc
file
iana-etc

24
pkg/iana-etc/build Executable file
View file

@ -0,0 +1,24 @@
VERSION="1"
SRCDIR="iana-etc-${VERSION}"
TARBALL="${SRCDIR}.tar.xz"
URL="http://infraroot.at/pygos"
SHA256SUM="1d38d5d90fa04e6f2cca46aad575d1b1c63d9443150abf66fe4dfaf0409358c2"
DEPENDS=""
prepare() {
return
}
build() {
return
}
deploy() {
local SOURCE="$1"
local BUILD="$2"
local DEPLOY="$3"
mkdir -p "$DEPLOY/etc"
cp "$SOURCE/protocols" "$DEPLOY/etc"
cp "$SOURCE/services" "$DEPLOY/etc"
}