Fix names of recipe files that were non-parsable

This commit is contained in:
Oliver Tappe
2013-08-04 21:47:43 +02:00
parent e00c2d5e19
commit d525fee8e9
135 changed files with 0 additions and 95 deletions

View File

@@ -0,0 +1,24 @@
DESCRIPTION="Open Source next-generation build tool."
HOMEPAGE="http://www.scons.org/"
LICENSE="MIT"
COPYRIGHT="2001-2008 The SCons Foundation"
SRC_URI="http://ovh.dl.sourceforge.net/sourceforge/scons/scons-1.0.1.tar.gz"
CHECKSUM_MD5="139ef2e108789afe25ee0bdbb138b8c0"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND="dev-lang/python <= 2.5.5"
BUILD()
{
cd scons-1.0.1
python2.5 setup.py build
}
INSTALL()
{
cd scons-1.0.1
if [ ! -z ${DESTDIR} ];then
python2.5 setup.py install --root="${DESTDIR}" --prefix="/boot/common" --symlink-scons --standard-lib
else
python2.5 setup.py install --prefix="/boot/common" --symlink-scons --standard-lib
fi
}