mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 05:10:05 +02:00
44 lines
1001 B
Bash
44 lines
1001 B
Bash
SUMMARY="Google Maps Mini"
|
|
DESCRIPTION="
|
|
Qt Widget that allows a user to choose lat/lng from a GoogleMap view, with location search"
|
|
HOMEPAGE="http://www.haikuware.com/directory/view-details/internet-network/web-browsers/googlemaps-mini"
|
|
COPYRIGHT="2013 Morgan Germain"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="git+https://github.com/mgermain-genymobile/GoogleMapQtWidget.git#3fefbef368430deda7bd26e2a875cca3db2126ce"
|
|
|
|
ARCHITECTURES="!x86_gcc2 ?x86 ?x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
googlemaps_mini = $portVersion
|
|
app:googlemaps_mini = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku${secondaryArchSuffix}
|
|
libqt4${secondaryArchSuffix} < 5
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
libqt4${secondaryArchSuffix}_devel < 5
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:gcc${secondaryArchSuffix}
|
|
cmd:qmake${secondaryArchSuffix}
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
qmake
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp build/mgeGoogleMap $appsDir/GoogleMapsMini
|
|
addAppDeskbarSymlink $appsDir/GoogleMapsMini
|
|
}
|