mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
58 lines
1.1 KiB
Bash
58 lines
1.1 KiB
Bash
SUMMARY="xproto"
|
|
DESCRIPTION="
|
|
xproto.
|
|
"
|
|
HOMEPAGE="http://cgit.freedesktop.org/xorg/proto/xproto/"
|
|
COPYRIGHT="1991, Oracle and/or its affiliates. All rights reserved.
|
|
1985, 1987, 1988, 1990, 1991, 1993-1996, 1998 The Open Group
|
|
1987 by Digital Equipment Corporation, Maynard, Massachusetts.
|
|
1987 by Apollo Computer Inc., Chelmsford, Massachusetts.
|
|
1989 by Hewlett-Packard Company.
|
|
1999 The XFree86 Project Inc."
|
|
LICENSE="MIT (no promotion)"
|
|
|
|
SOURCE_URI="git://anongit.freedesktop.org/xorg/proto/xproto"
|
|
#CHECKSUM_MD5=""
|
|
REVISION="1"
|
|
|
|
PATCHES="xproto-7.0.23_git.patch"
|
|
|
|
ARCHITECTURES="?x86_gcc2 ?x86 ?x86_64"
|
|
SECONDARY_ARCHITECTURES="?x86_gcc2 ?x86"
|
|
|
|
PROVIDES="
|
|
xproto$secondaryArchSuffix = $portVersion
|
|
devel:xproto$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:util_macros$secondaryArchSuffix
|
|
cmd:autoconf
|
|
cmd:libtool
|
|
cmd:aclocal
|
|
cmd:make
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
./autogen.sh -V
|
|
runConfigure ./configure
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
fixPkgconfig
|
|
}
|