forked from ports/contrib
33 lines
844 B
Plaintext
33 lines
844 B
Plaintext
# Description: The cross-platform media player and streaming server
|
|
# URL: http://www.videolan.org/vlc/
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Packager: Matt Housh, jaeger at morpheus dot net
|
|
# Depends on: libmad, ffmpeg, qt4, libdvdnav, alsa-lib, liba52, libgcrypt
|
|
|
|
name=vlc
|
|
version=1.1.5
|
|
release=2
|
|
source=(http://download.videolan.org/pub/videolan/$name/$version/$name-$version.tar.bz2 \
|
|
fix-heap-corruption.diff)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
# See
|
|
# http://git.videolan.org/?p=vlc.git;h=f9b664eac0e1a7bceed9d7b5854fd9fc351b4aab
|
|
# for details
|
|
patch -i $SRC/fix-heap-corruption.diff -p1
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-nls \
|
|
--disable-fribidi \
|
|
--disable-httpd \
|
|
--disable-hal \
|
|
--disable-dbus \
|
|
--enable-alsa \
|
|
--disable-remoteosd \
|
|
--disable-lua
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|