Files
haikuports/haiku-apps/microbe/microbe-20130728.recipe
2016-02-26 10:33:51 -05:00

39 lines
686 B
Bash

SUMMARY="Source code editor"
DESCRIPTION="
Microbe is a minimalistic programmers text and source code editor."
HOMEPAGE="https://github.com/aldeck/microbe"
COPYRIGHT="2011 Alexandre Deckner"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="git://github.com/aldeck/microbe#41f6ce8a5d96c96af9fb17eda1b466a5e9e0bfb1"
PATCHES="microbe-20130728.patch"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES="
microbe = $portVersion
app:Microbe = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
makefile_engine
cmd:make
cmd:g++
"
BUILD()
{
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
cp objects/Microbe $appsDir/Microbe
addAppDeskbarSymlink $appsDir/Microbe
}