* 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

@@ -0,0 +1,31 @@
DESCRIPTION="Handy console-based calculator utility"
HOMEPAGE="http://www.gnu.org/software/bc/bc.html"
SRC_URI="http://ftp.gnu.org/gnu/bc/bc-1.06.tar.gz"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
CHECKSUM_MD5="d44b5dddebd8a7a7309aea6c36fda117"
BUILD()
{
cd bc-1.06
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--infodir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/info \
--mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man
make
}
INSTALL()
{
cd bc-1.06
make install DESTDIR=${DESTDIR}
}
TEST()
{
cd bc-1.06/Test
timetest
}
LICENSE="GNU GPL v2
GNU LGPL v2.1"
COPYRIGHT="1991-2000 Free Software Foundation, Inc."