mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
* rdesktop Removed "." from SUMMARY. Re-ordered blocks. * rebar Removed "." from SUMMARY. Added REQUIRES and BUILD_REQUIRES. Re-ordered blocks. * redoflacs Removed "." from SUMMARY. Re-ordered blocks. * rename Removed "." from SUMMARY. Re-ordered blocks. * rtmpdump Improved SUMMARY. Re-ordered blocks. * rxtx Improved SUMMARY. Fixed COPRIGHT. Re-ordered blocks. * scheherazade_font Removed "." from SUMMARY. Re-ordered blocks. * scrittore Improved SUMMARY. Added REQUIRES and BUILD_REQUIRES. Re-ordered blocks. * sdl_bomber Removed "." from SUMMARY. Re-ordered blocks. * shredder Removed "." from SUMMARY. Added BUILD_REQUIRES. Re-ordered blocks. * simh Re-ordered blocks. Lint warns of unused patch. I does build without. Remove the patch? * snappy Removed "." from SUMMARY. Re-ordered blocks. * spidermonkey Removed "." from SUMMARY. Re-ordered blocks.
43 lines
777 B
Bash
43 lines
777 B
Bash
SUMMARY="A Scintilla-based text editor"
|
|
DESCRIPTION="Based on the popular framework for code highlighting, \
|
|
Scrittore provides a simplistic programmer's text editor."
|
|
HOMEPAGE="https://github.com/HaikuArchives/Scrittore"
|
|
COPYRIGHT="1998-2003 Scintilla authors.
|
|
2011-2013 Haiku authors.
|
|
"
|
|
REVISION="1"
|
|
LICENSE="Scintilla"
|
|
SOURCE_URI="git+https://github.com/HaikuArchives/Scrittore.git"
|
|
|
|
ARCHITECTURES="x86 !x86_64 ?arm ?ppc"
|
|
|
|
PROVIDES="
|
|
Scrittore
|
|
app:Scrittore
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:g++
|
|
haiku_devel
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd scintilla/haiku
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp bin/scintilla-haiku $appsDir/Scrittore
|
|
addAppDeskbarSymlink $appsDir/Scrittore
|
|
}
|