* 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,30 @@
DESCRIPTION="LibDSK is a library for manipulating disk image files"
HOMEPAGE="http://www.seasip.demon.co.uk/Unix/LibDsk/"
SRC_URI="http://www.seasip.info/Unix/LibDsk/libdsk-1.3.3.tar.gz"
REVISION="1"
STATUS_HAIKU="untested"
DEPEND=""
#CHECKSUM_MD5=""
BUILD()
{
cd libdsk-1.3.3
# Need to update the libtools in the package to build shared libraries
libtoolize
# We need a makefile to run make distclean...
./configure --prefix=/boot/common
# Make sure autotools know about the updated libtools...
make distclean
# ... and run configure again
./configure --prefix=/boot/common
make
}
INSTALL()
{
cd libdsk-1.3.3
make install
}
COPYRIGHT="2010 John Elliott"
LICENSE="GNU GPL v2"