mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
45 lines
916 B
Bash
45 lines
916 B
Bash
SUMMARY="Easily create and play games of solitaire"
|
|
DESCRIPTION="Solitaire program that loads, saves, edits, and of course runs \
|
|
solitaire games."
|
|
HOMEPAGE="http://github.com/HaikuArchives/BeSol"
|
|
COPYRIGHT="1999 Jason Wrinkle"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="git://github.com/HaikuArchives/BeSol"
|
|
SOURCE_DIR="BeSol-master"
|
|
PATCHES="BeSol.patch"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
besol$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix >= $haikuVersion
|
|
lib:libie
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libie
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel >= $haikuVersion
|
|
cmd:find
|
|
cmd:make
|
|
cmd:gcc$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
find . -name *.cpp -exec g++ -c {} \;
|
|
find . -name *.c++ -exec g++ -c {} \;
|
|
g++ -o BeSol *.o -lbe -ltranslation -lie -ltracker
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp BeSol $appsDir
|
|
}
|