0
0
Fork 0
haikuports/haiku-apps/runprogram/runprogram-1.0rc1.recipe

47 lines
1.0 KiB
Bash
Raw Permalink Normal View History

SUMMARY="A simple program for running a quick terminal command"
2017-10-27 11:44:19 +00:00
DESCRIPTION="Run Program, written by DarkWyrm, is a simple program that runs \
a command. It can autocomplete commands as you type, and is case insensitive.
2014-01-02 21:40:57 +00:00
If bound to a key combination via Shortcuts, commands can be run without even \
2016-02-26 15:33:51 +00:00
touching the mouse."
2017-10-27 11:44:19 +00:00
HOMEPAGE="https://github.com/HaikuArchives/RunProgram/"
COPYRIGHT="2008 DarkWyrm"
2016-02-17 19:26:37 +00:00
LICENSE="MIT"
2017-10-27 11:44:19 +00:00
REVISION="3"
srcGitRev="ddd2f6bc886964011961a1880af11eb31fb3186e"
SOURCE_URI="https://github.com/HaikuArchives/RunProgram/archive/$srcGitRev.zip"
2017-10-27 11:44:19 +00:00
CHECKSUM_SHA256="357aa427d1b344a76bdf9e8b25191e7514b0c8b993a7dc72331fb2bcd8ae95df"
SOURCE_DIR="RunProgram-$srcGitRev"
2016-02-17 19:26:37 +00:00
ARCHITECTURES="all"
PROVIDES="
2014-10-28 21:25:03 +00:00
runprogram = $portVersion
app:RunProgram = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
2017-10-27 11:44:19 +00:00
makefile_engine
"
BUILD_PREREQUIRES="
cmd:gcc
2017-10-27 11:44:19 +00:00
cmd:make
cmd:xres
"
BUILD()
{
cd src
2017-10-27 11:44:19 +00:00
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
2017-10-27 11:44:19 +00:00
cp src/objects/RunProgram $appsDir
addAppDeskbarSymlink $appsDir/RunProgram
}