redox/recipes/pastel/recipe.sh
Tibor Nagy a61842d225 Add Orbital as a runtime dependency for the GUI apps
And also make Orbital depend on the orbdata package
2018-03-29 00:22:52 +02:00

22 lines
453 B
Bash

GIT=https://github.com/redox-os/pastel.git
GIT_UPSTREAM=https://github.com/robbycerantola/pastel.git
BINDIR=/ui/bin
DEPENDS="orbital"
function recipe_stage {
mkdir "$1/ui"
cp -rv res "$1/ui/pastel"
mkdir "$1/ui/apps"
cat > "$1/ui/apps/pastel" <<-EOF
name=Pastel
binary=/ui/bin/pastel
icon=/ui/pastel/accessories-bitmap-editor.png
accept=*.bmp
accept=*.jpg
accept=*.jpeg
accept=*.png
author=Robby Cerantola
description=Bitmap Editor
EOF
}