STLover: bump version

This commit is contained in:
Gerasim Troeglazov
2020-11-08 22:40:07 +10:00
parent 6b8a3d7839
commit 17cf83ba3b

View File

@@ -0,0 +1,48 @@
SUMMARY="A simple STL viewer"
DESCRIPTION="Display and manipulate the content of stereolithography (STL) files."
HOMEPAGE="https://github.com/threedeyes/STLover"
COPYRIGHT="2020 Gerasim Troeglazov"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="https://github.com/threedeyes/STLover/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="89d74c239d1ac79046c2b905992a2d3ddab89d44fc794f866023a9ff8b4d1e69"
SOURCE_DIR="STLover-$portVersion"
ARCHITECTURES="!x86_gcc2 x86_64"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
stlover$secondaryArchSuffix = $portVersion
app:STLover = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libadmesh$secondaryArchSuffix
lib:libgl$secondaryArchSuffix
lib:libglu$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libadmesh$secondaryArchSuffix
devel:libgl$secondaryArchSuffix
devel:libglu$secondaryArchSuffix
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:make
"
BUILD()
{
make
}
INSTALL()
{
mkdir -p $appsDir
make TARGET_DIR=$appsDir
addAppDeskbarSymlink $appsDir/STLover
}