mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-15 16:20:08 +02:00
58 lines
1.2 KiB
Bash
58 lines
1.2 KiB
Bash
SUMMARY="Interface Elements Library"
|
|
DESCRIPTION="Attila Mezei's Interface Elements. This library helps you to \
|
|
instantiate window archives."
|
|
HOMEPAGE="http://github.com/HaikuArchives/InterfaceElements"
|
|
SOURCE_URI="git://github.com/HaikuArchives/InterfaceElements"
|
|
REVISION="1"
|
|
LICENSE="GNU GPL v3"
|
|
COPYRIGHT="1997-1998 Attila Mezei"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
interface_elements$secondaryArchSuffix = $portVersion
|
|
lib:libie$secondaryArchSuffix
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
BUILD_REQUIRES=""
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
makefile_engine
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
SOURCE_DIR="InterfaceElements-master"
|
|
|
|
#PATCHES="IEWindow.patch"
|
|
|
|
BUILD()
|
|
{
|
|
cd "Develop/IE library"
|
|
make BUILDHOME=/system/develop $jobArgs
|
|
}
|
|
INSTALL()
|
|
{
|
|
mkdir -p $includeDir
|
|
mkdir -p $libDir
|
|
|
|
cd "Develop/IE library"
|
|
make BUILDHOME=/system/develop INSTALL_DIR=$libDir $jobArgs install
|
|
cp *.h $includeDir
|
|
|
|
prepareInstalledDevelLibs libie
|
|
|
|
packageEntries devel \
|
|
$developDir
|
|
}
|
|
PROVIDES_devel="
|
|
interface_elements${secondaryArchSuffix}_devel
|
|
devel:libie$secondaryArchSuffix
|
|
"
|
|
|
|
REQUIRES_devel="
|
|
interface_elements${secondaryArchSuffix} == $portVersion base
|
|
"
|