Files
haikuports/haiku-apps/microbe/microbe-20130728.recipe
vanishakesswani 8128305c22 Switch 5 recipes to a safe source and delete 9 old receipes. (#935)
Switch these 5 recipes to a safe SOURCE_URI:
* microbe-20130728
* minimizeall-1.0.0
* optipngtranslator-0.0.1
* vwget-20141229
* minesweeper-20150109

Delete these 9 old recipes (and their patches):
* libmicro-0.4.1
* postgresql-9.0.4 & 9.2.3
* redis-2.2.11
* wolfssl-1.6.5 & 1.8.0 & 2.0.2 & 2.5.0
* numpy-1.4.1
2016-12-20 21:27:50 +00:00

42 lines
817 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"
srcGitRev="41f6ce8a5d96c96af9fb17eda1b466a5e9e0bfb1"
SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="d709553da3d018ab4696029fd42c4cfe1a7c5880338fa5a00dd6575a3793087c"
SOURCE_DIR="microbe-$srcGitRev"
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
}