mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
24 lines
511 B
Plaintext
24 lines
511 B
Plaintext
DESCRIPTION="a52dec - library for decoding ATSC A/52 streams used in DVD"
|
|
HOMEPAGE="http://liba52.sourceforge.net/"
|
|
SRC_URI="http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz"
|
|
CHECKSUM_MD5="caa9f5bc44232dc8aeea773fea56be80"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD()
|
|
{
|
|
cd a52dec-0.7.4
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
# automake
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` --enable-shared
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd a52dec-0.7.4
|
|
make install DESTDIR=${DESTDIR}
|
|
}
|