mirror of
https://github.com/pygos/build.git
synced 2024-11-22 11:09:46 +01:00
Add iana-etc package
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
parent
2235d8e6a0
commit
73aad9f191
3 changed files with 26 additions and 0 deletions
|
@ -23,3 +23,4 @@ openrc
|
|||
procps-ng
|
||||
psmisc
|
||||
file
|
||||
iana-etc
|
||||
|
|
|
@ -26,3 +26,4 @@ openrc
|
|||
procps-ng
|
||||
psmisc
|
||||
file
|
||||
iana-etc
|
||||
|
|
24
pkg/iana-etc/build
Executable file
24
pkg/iana-etc/build
Executable 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"
|
||||
}
|
Loading…
Reference in a new issue