wok annotate vlc/receipt @ rev 19139

vlc: add x265 support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 18 17:02:56 2016 +0200 (2016-05-18)
parents f8a2fafebed5
children d74ed046ff3b
rev   line source
jozee@2944 1 # SliTaz package receipt.
jozee@2944 2
jozee@2944 3 PACKAGE="vlc"
pascal@19101 4 VERSION="2.2.3"
jozee@2944 5 CATEGORY="multimedia"
jozee@2944 6 SHORT_DESC="MPEG, VCD/DVD, and DivX player"
jozee@2944 7 MAINTAINER="jozee@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
domcox@12849 9 TARBALL="$PACKAGE-$VERSION.tar.xz"
domcox@12849 10 WEB_SITE="http://www.videolan.org/vlc/"
jozee@2944 11 WGET_URL="http://download.videolan.org/pub/videolan/$PACKAGE/$VERSION/$TARBALL"
jozee@4975 12 TAGS="audio video multimedia movie player"
pascal@15000 13
domcox@12849 14 DEPENDS="libQtCore libQtGui libvlc"
domcox@12849 15 BUILD_DEPENDS="Qt4-dev alsa-lib-dev dbus-dev ffmpeg-dev gettext \
pascal@15628 16 libmad-dev lua5.1-dev tar xcb-util-dev yasm expat-dev libxml2-dev \
pascal@17392 17 util-linux-uuid-dev x264-dev flac-dev taglib-dev gnutls-dev libupnp-dev \
pascal@19139 18 libsamplerate-dev fribidi-dev zvbi-dev opus-dev gmp-dev ncurses-dev x265-dev"
jozee@2944 19
jozee@2944 20 compile_rules()
jozee@2944 21 {
domcox@12849 22 [ -s /var/lib/dbus/machine-id ] || dbus-uuidgen > /var/lib/dbus/machine-id
jozee@2944 23 cd $src
pascal@13863 24 [ -e /usr/bin/luac ] || ln -s luac5.1 /usr/bin/luac
pascal@17395 25 sed -i 's/ERROR_zip_cannot/error_zip_cannot/' modules/access/zip/zipstream.c
paul@19119 26 # export ncurses paths
paul@19119 27 export NCURSES_CFLAGS="-I/usr/include"
paul@19119 28 export NCURSES_LIBS="-L/lib -lncurses -ltinfo"
domcox@12849 29 ./configure \
domcox@12849 30 --prefix=/usr \
domcox@12849 31 --disable-pulse \
domcox@12849 32 --disable-a52 \
domcox@12849 33 --disable-glx \
domcox@12849 34 --disable-sout \
domcox@12849 35 --disable-httpd \
domcox@12849 36 --disable-libgcrypt \
paul@19108 37 --enable-ncurses \
slaxemulator@10101 38 $CONFIGURE_ARGS &&
jozee@2944 39 make &&
slaxemulator@9842 40 make install
pascal@13862 41 [ -L /usr/bin/luac ] && rm -f /usr/bin/luac
jozee@2944 42 }
jozee@2944 43
jozee@2944 44 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2944 45 genpkg_rules()
jozee@2944 46 {
pascal@4617 47 mkdir -p $fs/usr/share/pixmaps
pascal@13862 48 cp -a $install/usr/bin $fs/usr
pascal@13862 49 cp -a $install/usr/share/$PACKAGE $fs/usr/share
domcox@12849 50 #Remove extra icons
jozee@2944 51 rm $fs/usr/share/$PACKAGE/*.ico
jozee@2944 52 #copy vlc icon
pascal@13862 53 cp -a $install/usr/share/icons/hicolor/16x16/apps/vlc.png $fs/usr/share/pixmaps
jozee@2944 54 #Remove unnecessary fonts
jozee@2944 55 rm $fs/usr/share/$PACKAGE/skins2/fonts/*
jozee@2944 56 }