mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-27 15:24:18 +08:00
Merge branch 'master' of https://github.com/redox-os/cookbook
This commit is contained in:
commit
c3727e519f
@ -1,5 +1,11 @@
|
||||
VERSION=3.3
|
||||
GIT=https://github.com/FFmpeg/FFmpeg
|
||||
BRANCH=release/3.3
|
||||
BRANCH=release/$VERSION
|
||||
|
||||
function recipe_version {
|
||||
echo "$VERSION"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_update {
|
||||
echo "skipping update"
|
||||
|
||||
31
recipes/netdb/recipe.sh
Normal file
31
recipes/netdb/recipe.sh
Normal file
@ -0,0 +1,31 @@
|
||||
GIT=https://github.com/redox-os/netdb
|
||||
|
||||
function recipe_version {
|
||||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_update {
|
||||
echo "skipping update"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_build {
|
||||
echo "skipping build"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_test {
|
||||
echo "skipping test"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_clean {
|
||||
echo "skipping clean"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_stage {
|
||||
cp -r * ../stage/
|
||||
skip=1
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user