* convert all .bep files to follow shell syntax

* rename all .bep files to .recipe
This commit is contained in:
Oliver Tappe
2013-03-29 16:31:03 +00:00
parent 94cc6aaf85
commit 60aba35d64
937 changed files with 4094 additions and 2047 deletions

View File

@@ -5,11 +5,13 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPEND="dev-lang/python >= 2.6.4"
BUILD {
BUILD()
{
echo "No build step"
}
INSTALL {
INSTALL()
{
cd cnf-1.0-git
python install_cnf.py
}

View File

@@ -5,13 +5,15 @@ CHECKSUM_MD5="5c7b5349dc3161763f7f366ceb96516b"
REVISION="1"
STATUS_HAIKU="broken"
DEPEND="dev-lang/python >= 2.6.5"
BUILD {
BUILD()
{
cd numpy-1.4.1
python setup.py config
python setup.py build
}
INSTALL {
INSTALL()
{
cd numpy-1.4.1
python setup.py install
}

View File

@@ -5,13 +5,15 @@ CHECKSUM_MD5="3a8bfdc434df782d647161c48943ee09"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND="dev-lang/python >= 2.6.5"
BUILD {
BUILD()
{
cd numpy-1.5.0
python setup.py config
python setup.py build
}
INSTALL {
INSTALL()
{
cd numpy-1.5.0
python setup.py install --root=${DESTDIR}
}

View File

@@ -5,11 +5,13 @@ REVISION= "1"
STATUS_HAIKU="stable"
DEPEND="pycrypto >= 1.9"
CHECKSUM_MD5="b1cfe0cd55772115f808a11c1baba8a0"
BUILD {
BUILD()
{
cd paramiko-1.7.6
python setup.py build
}
INSTALL {
INSTALL()
{
cd paramiko-1.7.6
if [ -n "${DESTDIR}" ];then
python setup.py install --root=${DESTDIR}

View File

@@ -5,19 +5,22 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
#CHECKSUM_MD5="f1f509a1c4623056c8e780bb7c9a05c5"
BUILD {
BUILD()
{
cd pychart-1.39-bzr
python setup.py config
python setup.py build
}
INSTALL {
INSTALL()
{
cd pychart-1.39-bzr
python setup.py install --root=${DESTDIR}
}
TEST {
TEST()
{
cd pychart-1.39-bzr/demos
make
}

View File

@@ -5,19 +5,22 @@ REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
CHECKSUM_MD5="f1f509a1c4623056c8e780bb7c9a05c5"
BUILD {
BUILD()
{
cd PyChart-1.39
python setup.py config
python setup.py build
}
INSTALL {
INSTALL()
{
cd PyChart-1.39
python setup.py install --root=${DESTDIR}
}
TEST {
TEST()
{
cd PyChart-1.39/demos
make
}

View File

@@ -5,11 +5,13 @@ REVISION= "1"
STATUS_HAIKU="unstable"
DEPEND=""
CHECKSUM_MD5="2b811cfbfc342d83ee614097effb8101"
BUILD {
BUILD()
{
cd pycrypto-2.3
python setup.py build
}
INSTALL {
INSTALL()
{
cd pycrypto-2.3
if [ -n "${DESTDIR}" ];then
python setup.py install --root=${DESTDIR}

View File

@@ -6,12 +6,14 @@ STATUS_HAIKU="stable"
DEPEND="dev-python/setuptools >= 0.6"
CHECKSUM_MD5="8b1695ed6f5bdbda8fbcde82b62d505c"
BUILD {
BUILD()
{
cd PyDispatcher-2.0.1
python setup.py build
}
INSTALL {
INSTALL()
{
cd PyDispatcher-2.0.1
python setup.py install --root=${DESTDIR}

View File

@@ -9,13 +9,15 @@ DEPEND="dev-lang/python >= 2.6.4
media-libs/sdl-image >= 1.2.10
media-libs/smpeg >= 0.4.5"
BUILD {
BUILD()
{
cd pygame-1.9.1release
LOCALBASE=/boot/common/
python setup.py build
}
INSTALL {
INSTALL()
{
cd pygame-1.9.1release
python setup.py install --root=${DESTDIR}
}

View File

@@ -7,12 +7,14 @@ DEPEND="dev-lang/python >= 2.6.4
REVISION="1"
CHECKSUM_MD5="a2be89cb2288174ebb18bec68fa559fb"
BUILD {
BUILD()
{
cd pylzma-0.4.4
python setup.py build
}
INSTALL {
INSTALL()
{
cd pylzma-0.4.4
python setup.py install
}

View File

@@ -7,12 +7,14 @@ STATUS_HAIKU="unstable"
DEPEND="dev-lang/python >= 2.6.4
media-libs/freeglut"
BUILD {
BUILD()
{
cd PyOpenGL-3.0.1
python setup.py build
}
INSTALL {
INSTALL()
{
cd PyOpenGL-3.0.1
python setup.py install --root=${DESTDIR}
}

View File

@@ -6,13 +6,15 @@ REVISION="1"
STATUS_HAIKU="broken"
DEPEND="dev-lang/python >= 2.6.4"
BUILD {
BUILD()
{
cd pyserial-2.5
python setup.py build
}
INSTALL {
INSTALL()
{
cd pyserial-2.5
python setup.py install --root=${DESTDIR}

View File

@@ -5,12 +5,14 @@ CHECKSUM_MD5="1f7655050cebbb664db976405fdba209"
REVISION="1"
STATUS_HAIKU="untested"
DEPEND="dev-lang/python >= 2.6.4"
BUILD {
BUILD()
{
cd PyXML-0.8.4
python setup.py build
}
INSTALL {
INSTALL()
{
cd PyXML-0.8.4
python setup.py install --root=${DESTDIR}
}

View File

@@ -5,12 +5,14 @@ CHECKSUM_MD5="ab3d3a5f71ebb6fe4fd33539f5d5768e"
REVISION="1"
STATUS_HAIKU="untested"
DEPEND="dev-lang/python >= 2.6.4"
BUILD {
BUILD()
{
cd rdflib-3.2.0
python setup.py build
}
INSTALL {
INSTALL()
{
cd rdflib-3.2.0
python setup.py install --root=${DESTDIR}
}

View File

@@ -6,12 +6,14 @@ STATUS_HAIKU="stable"
DEPEND=""
CHECKSUM_MD5="7df2a529a074f613b509fb44feefe74e"
BUILD {
BUILD()
{
cd setuptools-0.6c11
python setup.py build
}
INSTALL {
INSTALL()
{
cd setuptools-0.6c11
if [ -n "${DESTDIR}" ];then
python setup.py install --root=${DESTDIR}

View File

@@ -6,12 +6,14 @@ STATUS_HAIKU="stable"
DEPEND=""
CHECKSUM_MD5="9c4e13b4f9b087442f76e7382ba97e3b"
BUILD {
BUILD()
{
cd SimpleParse-2.1.1a2
python setup.py build
}
INSTALL {
INSTALL()
{
cd SimpleParse-2.1.1a2
python setup.py install --root=${DESTDIR}