Files
haikuports/haiku-apps/runprogram/runprogram-1.0rc1.recipe
Chris Roberts 8a30e59744 Overhaul the haiku-apps directory
* Fixed PROVIDES/*REQUIRES entries
* Added vcs hashes to the ports needing it in the SRC_URI
* Made single executable apps install to the top level $appsDir
* Added patches for gcc4 versions of most apps
* Added patches for apps that couldn't build on any arch
   ( even though they were marked as working :( )
* Other misc fixes that I've forgotten already because I'm sick of
  looking at this directory
2013-12-02 20:48:05 -07:00

57 lines
1.1 KiB
Plaintext

SUMMARY="A simple program for running a quick terminal command"
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.
If bound to a key combination via Shortcuts, commands can be
run without even touching the mouse.
"
HOMEPAGE="https://github.com/HaikuArchives/RunProgram"
SRC_URI="git+git://github.com/HaikuArchives/RunProgram.git#a8fe29319e8dde884d8634a0c5a82838a3706563"
LICENSE="MIT"
COPYRIGHT="2008 DarkWyrm"
REVISION="2"
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
PROVIDES="
RunProgram = $portVersion
app:RunProgram = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:xres
"
PATCHES="runprogram-1.0rc1.patchset"
BUILD()
{
cd src
rm -f ObjectList.h
g++ -o RunProgram -lbe \
AutoTextControl.cpp \
ExeBox.cpp \
main.cpp \
RunWindow.cpp \
TextFile.cpp
xres -o RunProgram "Run Program.rsrc"
mimeset -f RunProgram
}
INSTALL()
{
mkdir -p $appsDir
cp src/RunProgram $appsDir
addAppDeskbarSymlink $appsDir/RunProgram
}