mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
44 lines
992 B
Bash
44 lines
992 B
Bash
SUMMARY="A module that is required only when building GNOME from the repository"
|
|
DESCRIPTION="This module contains various files needed to bootstrap GNOME \
|
|
modules built from git."
|
|
HOMEPAGE="http://git.gnome.org/browse/gnome-common/"
|
|
COPYRIGHT="1999-2010 Martin Baulig"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
SOURCE_URI="http://ftp.gnome.org/pub/GNOME/sources/gnome-common/3.18/gnome-common-3.18.0.tar.xz"
|
|
CHECKSUM_SHA256="22569e370ae755e04527b76328befc4c73b62bfd4a572499fde116b8318af8cf"
|
|
SOURCE_DIR="gnome-common-3.18.0"
|
|
|
|
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
gnome_common$secondaryArchSuffix = $portVersion
|
|
cmd:gnome_autogen.sh$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:automake
|
|
cmd:autoconf
|
|
cmd:autoreconf
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
./autogen.sh
|
|
runConfigure ./configure
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|