mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-02 21:18:51 +02:00
* Referring the current haiku version explicitly is not needed, since the RequiresUpdater takes care of setting the version of Haiku used for building a package.
53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
SUMMARY="GYP can Generate Your Projects."
|
|
DESCRIPTION="GYP (Generate Your Projects) is a build automation tool. \
|
|
GYP is created by Google to generate native IDE project files (such as \
|
|
Visual Studio and Xcode) for building the Chromium web browser and is \
|
|
licensed as open source software using the BSD software license. \
|
|
"
|
|
HOMEPAGE="https://code.google.com/p/gyp/"
|
|
SRC_URI="svn+http://gyp.googlecode.com/svn/trunk#1948"
|
|
LICENSE="BSD (2-clause)"
|
|
COPYRIGHT="2012 Google Inc."
|
|
REVISION="2"
|
|
ARCHITECTURES="x86 x86_gcc2 x86_64"
|
|
|
|
SOURCE_DIR="gyp-$portVersion"
|
|
PATCHES="gyp-r1948.patch"
|
|
|
|
PROVIDES="
|
|
gyp = $portVersion
|
|
cmd:gyp = $portVersion
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku
|
|
cmd:python
|
|
python_setuptools
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
python_setuptools
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:python
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
$portPackageLinksDir/cmd~python/bin/python setup.py build
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
# GENERIC: all python_setuptools-based installs need this
|
|
pythonVersion=$(python --version 2>&1 | sed 's/Python //' | head -c3)
|
|
installLocation=$prefix/lib/python$pythonVersion/vendor-packages/
|
|
export PYTHONPATH=$installLocation:$PYTHONPATH
|
|
mkdir -p $installLocation
|
|
|
|
$portPackageLinksDir/cmd~python/bin/python setup.py install \
|
|
--prefix=$prefix
|
|
}
|