* 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,29 @@
DESCRIPTION="Theora is a free and open video compression format from the Xiph.org Foundation."
HOMEPAGE="http://www.theora.org/"
SRC_URI="http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND="media-libs/libogg >= 1.2.0
media-libs/libvorbis >= 1.3.0"
CHECKSUM_MD5="292ab65cedd5021d6b7ddd117e07cd8e"
BUILD()
{
cd libtheora-1.1.1
libtoolize --force --copy --install
aclocal -I m4
autoconf
COMMON_DOCS=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--datarootdir=$COMMON_DOCS \
--disable-asm
make
}
INSTALL()
{
cd libtheora-1.1.1
make install
}
LICENSE="BSD (3-clause)"
COPYRIGHT="2002-2009 Xiph.Org Foundation"