mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
27 lines
613 B
Plaintext
27 lines
613 B
Plaintext
DESCRIPTION="libvorbis"
|
|
HOMEPAGE="http://www.xiph.org"
|
|
SRC_URI="http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.3.tar.gz"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD {
|
|
cd libvorbis-1.2.3
|
|
libtoolize --force --copy --install
|
|
mkdir -p m4
|
|
cp /boot/common/share/aclocal/libtool.m4 m4
|
|
cp /boot/common/share/aclocal/ltoptions.m4 m4
|
|
cp /boot/common/share/aclocal/ltversion.m4 m4
|
|
cp /boot/common/share/aclocal/ltsugar.m4 m4
|
|
cp /boot/common/share/aclocal/lt~obsolete.m4 m4
|
|
aclocal -I m4
|
|
autoconf
|
|
automake
|
|
./configure --prefix=/boot/common
|
|
make
|
|
}
|
|
|
|
INSTALL {
|
|
cd libvorbis-1.2.3
|
|
make install
|
|
}
|