#Packager: Richard Lapointe #Former Packager(s): Name #updated by Dimitris Tzemos (djemos@slackel.gr) #to build with ncurses and disabled gnomevfs pkgname=vlc pkgver=2.0.4 pkgrel=1dj source=(http://download.videolan.org/pub/videolan/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz) sourcetemplate=http://people.salixos.org/djemos/$pkgname docs=("readme" "install" "copying" "changelog" "authors" "news" "todo") url=http://www.videolan.org/vlc/ slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "$pkgname - a multimedia player" "VLC (initially VideoLAN Client) is a highly portable multimedia player" "for various A/V formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, ogg,...)" "as well as DVDs, VCDs, and various streaming protocols. It can also be" "used as a server to stream in unicast or multicast in IPv4 or IPv6 on" "a high-bandwidth network." ) build() { cd $SRC/${pkgname}-$pkgver NCURSES_CFLAGS="$(ncursesw5-config --cflags) -I/usr/include" \ NCURSES_LIBS="$(ncursesw5-config --libs)" \ ./configure --prefix=/usr --libdir=/usr/lib${LIBDIRSUFFIX} \ --localstatedir=/var --sysconfdir=/etc \ --disable-rpath \ --enable-oss \ --enable-faad \ --enable-nls \ --enable-lirc \ --enable-pvr \ --enable-ncurses \ --enable-realrtsp \ --enable-xosd \ --enable-aa \ --enable-vcdx \ --enable-upnp \ --disable-gnomevfs make -j $numjobs || return 1 make install DESTDIR=$PKG }