mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 22:48:55 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
59 lines
1.3 KiB
Bash
59 lines
1.3 KiB
Bash
SUMMARY="Command line for creating GUI forms"
|
|
DESCRIPTION="Gadgeteer is a command line app for creating small GUI forms \
|
|
that users can fill out or play with. Once the users press the \"DONE\" \
|
|
button at the bottom of the screen, the command returns the user's input \
|
|
values so they could be used for different purposes."
|
|
HOMEPAGE="https://www.goodeveca.net/beos/"
|
|
COPYRIGHT="2016 Pete Goodeve
|
|
2006 Kirill Simonov"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="https://www.goodeveca.net/beos/Gadgeteer_${portVersion}_SRC.zip"
|
|
CHECKSUM_SHA256="9e7b200b157dba04946c786d9205aed3c0dfff50936fa01b2cbaf71683187965"
|
|
SOURCE_DIR="SRC"
|
|
PATCHES="gadgeteer-$portVersion.patchset"
|
|
ADDITIONAL_FILES="gadgeteer.rdef.in"
|
|
|
|
ARCHITECTURES="!all x86_gcc2"
|
|
|
|
PROVIDES="
|
|
gadgeteer = $portVersion
|
|
cmd:gadgeteer = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libyaml_0
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libyaml_0
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:cc
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
local MAJOR="`echo "$portVersion" | cut -d. -f1`"
|
|
local MIDDLE="`echo "$portVersion" | cut -d. -f2`"
|
|
local MINOR="`echo "$portVersion" | cut -d. -f3`"
|
|
|
|
sed \
|
|
-e "s|@MAJOR@|$MAJOR|" \
|
|
-e "s|@MIDDLE@|$MIDDLE|" \
|
|
-e "s|@MINOR@|$MINOR|" \
|
|
"$portDir"/additional-files/gadgeteer.rdef.in \
|
|
> gadgeteer.rdef
|
|
|
|
make OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $binDir
|
|
cp objects/gadgeteer $binDir
|
|
}
|