* 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,27 @@
DESCRIPTION="libpng"
HOMEPAGE="http://www.libpng.org"
COPYRIGHT="1998-2011 Glenn Randers-Pehrson
1996-1997 Andreas Dilger
1995-1996 Guy Eric Schalnat, Group 42, Inc."
LICENSE="LibPNG"
SRC_URI="http://prdownloads.sourceforge.net/libpng/libpng-1.5.12.tar.gz?download"
CHECKSUM_MD5="8ea7f60347a306c5faf70b977fa80e28"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD()
{
cd libpng-1.5.12
libtoolize --force --copy
./autogen.sh
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man
make
}
INSTALL()
{
cd libpng-1.5.12
make install
}