mirror of
https://github.com/pygos/build.git
synced 2024-11-18 09:19:46 +01:00
5c8effa301
- Packages that don't download anything don't need a prepare() hook - Packages that inherit the source from other packages should leave it untouched. If they get downloaded first, they should use the hook from the original package. Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
12 lines
185 B
Text
Executable file
12 lines
185 B
Text
Executable file
build() {
|
|
return
|
|
}
|
|
|
|
deploy() {
|
|
local INPUT="$1"
|
|
local OUTPUT="$2"
|
|
local DEPLOY="$3"
|
|
|
|
rsync -aH --files-from="$SCRIPTDIR/cfg/$CFG/libgcc_files.txt" \
|
|
"$TCDIR/$TARGET" "$DEPLOY"
|
|
}
|