vlc
This commit is contained in:
parent
65ecd72034
commit
cb21e7fe5c
|
@ -0,0 +1 @@
|
||||||
|
export QTDIR=/usr/lib/qt4
|
|
@ -1,33 +1,38 @@
|
||||||
# Description: Media player, streamer, and encoder. It can play from many inputs
|
# Description: The cross-platform media player and streaming server
|
||||||
# URL: http://www.slackware.com/~alien/slackbuilds/vlc/
|
# URL: http://www.videolan.org/vlc/
|
||||||
# Packager: pierre at nutyx dot org
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
||||||
# Depends on: libvlc qt5 x264 flac libmad glib librsvg alsa-lib xorg-libxinerama xorg-libxpm libvpx libcdio vcdimager live libdvdcss libdvdread libdvdnav libogg libtheora lame faac libvorbis ffmpeg faad2 liba52 libmpeg2 libmpcdec fribidi lua libdv speex
|
# Packager: milisarge@gmail.com
|
||||||
|
# Depends on: libmad, ffmpeg, qt4, libdvdnav, liba52, libgcrypt
|
||||||
|
|
||||||
run=(libvlc)
|
|
||||||
name=vlc
|
name=vlc
|
||||||
version=2.2.1
|
version=2.2.1
|
||||||
release=4
|
release=1
|
||||||
|
source=(http://download.videolan.org/pub/videolan/$name/$version/$name-$version.tar.xz)
|
||||||
source=( http://download.videolan.org/pub/videolan/vlc/$version/vlc-$version.tar.xz)
|
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
|
|
||||||
source setqt5
|
|
||||||
|
|
||||||
cd $name-$version
|
cd $name-$version
|
||||||
sed -i 's:libsmbclient.h:samba-4.0/&:' modules/access/smb.c
|
|
||||||
|
|
||||||
sh bootstrap
|
# allow building with new avcodec
|
||||||
./configure --prefix=/usr
|
sed -i 's/ 56/ 57/g' configure.ac
|
||||||
|
autoreconf -fi
|
||||||
|
|
||||||
sed -i 's/luaL_optint/(int)&eger/' modules/lua/libs/{net,osd,volume}.c
|
# initialize avformat structure
|
||||||
sed -i 's/luaL_checkint(/(int)luaL_checkinteger(/' \
|
sed -i 's/AVProbeData *pd;/AVProbeData pd={};/g' modules/demux/avformat/demux.c
|
||||||
modules/lua/{demux,libs/{configuration,net,osd,playlist,stream,variables,volume}}.c
|
|
||||||
|
|
||||||
|
|
||||||
|
./configure --prefix=/usr \
|
||||||
|
--mandir=/usr/man \
|
||||||
|
--disable-nls \
|
||||||
|
--disable-fribidi \
|
||||||
|
--disable-httpd \
|
||||||
|
--disable-dbus \
|
||||||
|
--enable-alsa \
|
||||||
|
--disable-remoteosd \
|
||||||
|
--disable-lua
|
||||||
make
|
make
|
||||||
make DESTDIR=$PKG docdir=/usr/share/doc/$name-$version install
|
make DESTDIR=$PKG install
|
||||||
|
|
||||||
rm -r $PKG/usr/{include,lib/pkgconfig}
|
|
||||||
rm $PKG/usr/lib/libvlc*
|
|
||||||
rm -rf $PKG/usr/share/doc
|
rm -rf $PKG/usr/share/doc
|
||||||
|
|
||||||
|
# fix desktop file
|
||||||
|
sed -i 's/--started-from-file//g' $PKG/usr/share/applications/vlc.desktop
|
||||||
}
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
# Description: Media player, streamer, and encoder. It can play from many inputs
|
||||||
|
# URL: http://www.slackware.com/~alien/slackbuilds/vlc/
|
||||||
|
# Packager: pierre at nutyx dot org
|
||||||
|
# Depends on: libvlc qt5 x264 flac libmad glib librsvg alsa-lib xorg-libxinerama xorg-libxpm libvpx libcdio vcdimager live libdvdcss libdvdread libdvdnav libogg libtheora lame faac libvorbis ffmpeg faad2 liba52 libmpeg2 libmpcdec fribidi lua libdv speex
|
||||||
|
|
||||||
|
run=(libvlc)
|
||||||
|
name=vlc
|
||||||
|
version=2.2.1
|
||||||
|
release=4
|
||||||
|
|
||||||
|
source=( http://download.videolan.org/pub/videolan/vlc/$version/vlc-$version.tar.xz)
|
||||||
|
|
||||||
|
build() {
|
||||||
|
|
||||||
|
source setqt5
|
||||||
|
|
||||||
|
cd $name-$version
|
||||||
|
sed -i 's:libsmbclient.h:samba-4.0/&:' modules/access/smb.c
|
||||||
|
|
||||||
|
sh bootstrap
|
||||||
|
./configure --prefix=/usr
|
||||||
|
|
||||||
|
sed -i 's/luaL_optint/(int)&eger/' modules/lua/libs/{net,osd,volume}.c
|
||||||
|
sed -i 's/luaL_checkint(/(int)luaL_checkinteger(/' \
|
||||||
|
modules/lua/{demux,libs/{configuration,net,osd,playlist,stream,variables,volume}}.c
|
||||||
|
|
||||||
|
make
|
||||||
|
make DESTDIR=$PKG docdir=/usr/share/doc/$name-$version install
|
||||||
|
|
||||||
|
rm -r $PKG/usr/{include,lib/pkgconfig}
|
||||||
|
rm $PKG/usr/lib/libvlc*
|
||||||
|
rm -rf $PKG/usr/share/doc
|
||||||
|
}
|
Loading…
Reference in New Issue