Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generic recipes: rework #161

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions generic/generic_cmd-1.2.3.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ BUILD()

INSTALL()
{
mkdir -p $commandBinDir
cp -a objects/projectx $commandBinDir
install -d $commandBinDir
install -t objects/projectx $commandBinDir
extrowerk marked this conversation as resolved.
Show resolved Hide resolved
}

TEST()
Expand Down
8 changes: 4 additions & 4 deletions generic/generic_font-1.2.3.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ BUILD()
INSTALL()
{
FONTDIR=$fontsDir/ttfonts
mkdir -p ${FONTDIR}
cp generic-font1.ttf ${FONTDIR}
cp generic-font2.ttf ${FONTDIR}
cp generic-font-bold.ttf ${FONTDIR}
install -d ${FONTDIR}
install -t generic-font1.ttf ${FONTDIR}
install -t generic-font2.ttf ${FONTDIR}
install -t generic-font-bold.ttf ${FONTDIR}
}
4 changes: 2 additions & 2 deletions generic/generic_haiku_app-1.2.3.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ BUILD()

INSTALL()
{
mkdir -p "$appsDir"
cp -a objects/ProjectX "$appsDir"
install -d "$appsDir"
install -t objects/ProjectX "$appsDir"

# Create the extra attributes
local APP_SIGNATURE="application/x-vnd.ProjectX"
Expand Down