Merge pull request #111 from sajattack/netdb

Add recipe for netdb
This commit is contained in:
Jeremy Soller 2017-11-19 21:30:56 -07:00 committed by GitHub
commit 00ecab5e04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

31
recipes/netdb/recipe.sh Normal file
View 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
}