Files
haikuports/haiku-apps/masterpiece/masterpiece-r742.recipe
Oliver Tappe 52b344b97b Drop references to $haikuVersion.
* Referring the current haiku version explicitly is not needed, since
  the RequiresUpdater takes care of setting the version of Haiku used
  for building a package.
2014-12-14 23:08:52 +01:00

60 lines
1.5 KiB
Plaintext

SUMMARY="New way to create opendocument compatible books/documents"
DESCRIPTION="
This is an attempt to create a new way to create documents or books. It moves \
away from the WYSIWYG paradigm of microsoft word, openoffice, etc. etc. etc. \
It takes a more keyboard only, thought flowing and typing markup language, \
object oriented approach where a user who has ideas or thoughts can jot these \
down and have them go into a list. to build their document/book, they would \
then order the list of thoughts, images, tables, etc. into the correct order \
and preview/publish their book.
"
HOMEPAGE="http://code.google.com/p/masterpiece/"
SRC_URI="svn+http://masterpiece.googlecode.com/svn/trunk#r742"
REVISION="1"
LICENSE="MIT"
COPYRIGHT="2010-2012 Pasquale J. Rinaldi, Jr."
ARCHITECTURES="x86_gcc2 !x86 ?x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 !x86"
PROVIDES="
masterpiece = $portVersion
app:MasterPiece = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libsqlite3$secondaryArchSuffix
lib:liblayout
lib:libpython2.7
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libsqlite3$secondaryArchSuffix
devel:libpython2.7
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:mkdepend
cmd:make
"
PATCHES="masterpiece-r742.patch"
BUILD()
{
make BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY` \
OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
cp objects/MasterPiece $appsDir
addAppDeskbarSymlink $appsDir/MasterPiece
}