Files
haikuports/haiku-apps/ppviewer/ppviewer-1.0.0.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

38 lines
714 B
Plaintext

SUMMARY="Decrypts your PowerPacker encrypted files"
DESCRIPTION="
Decrypts PowerPacker encrypted files using Stuart Caie's ppcrack 0.1 \
decrypting routines.
"
HOMEPAGE="https://github.com/HaikuArchives/PPViewer"
SRC_URI="git+https://github.com/HaikuArchives/PPViewer#ce572506ca6e69c888898abf5b958701e068122b"
REVISION="1"
LICENSE="MIT"
COPYRIGHT="2002 Maurice Michalski"
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
PROVIDES="
ppviewer = $portVersion
app:PPViewer = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:g++
"
BUILD()
{
g++ -lbe -ltracker -o PPViewer *.cpp
}
INSTALL()
{
mkdir -p $appsDir
cp PPViewer $appsDir
addAppDeskbarSymlink $appsDir/PPViewer
}