mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-23 05:14:18 +08:00
feat(terminfo): convert to TOML recipe
Signed-off-by: Anhad Singh <andypython@protonmail.com>
This commit is contained in:
parent
3d492f9ae3
commit
7a0b6a54ab
@ -1,22 +0,0 @@
|
||||
GIT=https://github.com/sajattack/terminfo
|
||||
|
||||
function recipe_version {
|
||||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_build {
|
||||
echo "skipping build"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_clean {
|
||||
echo "skipping clean"
|
||||
skip=1
|
||||
}
|
||||
|
||||
function recipe_stage {
|
||||
mkdir -p ../stage/share
|
||||
cp -r * ../stage/share/
|
||||
skip=1
|
||||
}
|
||||
11
recipes/other/terminfo/recipe.toml
Normal file
11
recipes/other/terminfo/recipe.toml
Normal file
@ -0,0 +1,11 @@
|
||||
[source]
|
||||
git = "https://github.com/sajattack/terminfo"
|
||||
branch = "master"
|
||||
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
mkdir -p ${COOKBOOK_STAGE}/share
|
||||
cp -r ${COOKBOOK_SOURCE}/. ${COOKBOOK_STAGE}/share/
|
||||
"""
|
||||
|
||||
Loading…
Reference in New Issue
Block a user