wok annotate vlc/receipt @ rev 21805

Up vlc (3.0.6) again
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 19:40:09 2019 +0200 (2019-08-15)
parents d9392a530592
children b5d6394fc7d4
rev   line source
jozee@2944 1 # SliTaz package receipt.
jozee@2944 2
jozee@2944 3 PACKAGE="vlc"
pascal@21804 4 VERSION="3.0.6"
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
pascal@21805 14 DEPENDS="libQtCore libQtGui libvlc gcc83-lib-base"
domcox@12849 15 BUILD_DEPENDS="Qt4-dev alsa-lib-dev dbus-dev ffmpeg-dev gettext \
pascal@19772 16 libmad-dev lua5.1-dev tar xcb-util-dev yasm expat-dev libxml2-dev libegl-mesa \
pascal@17392 17 util-linux-uuid-dev x264-dev flac-dev taglib-dev gnutls-dev libupnp-dev \
pascal@20592 18 libsamplerate-dev fribidi-dev zvbi-dev opus-dev gmp-dev ncurses-dev x265-dev \
pascal@21805 19 libgnutls gcc83"
jozee@2944 20
jozee@2944 21 compile_rules()
jozee@2944 22 {
domcox@12849 23 [ -s /var/lib/dbus/machine-id ] || dbus-uuidgen > /var/lib/dbus/machine-id
jozee@2944 24 cd $src
pascal@13863 25 [ -e /usr/bin/luac ] || ln -s luac5.1 /usr/bin/luac
pascal@17395 26 sed -i 's/ERROR_zip_cannot/error_zip_cannot/' modules/access/zip/zipstream.c
paul@19119 27 # export ncurses paths
paul@19119 28 export NCURSES_CFLAGS="-I/usr/include"
paul@19119 29 export NCURSES_LIBS="-L/lib -lncurses -ltinfo"
pascal@21805 30 export CC=gcc-83 CXX=g++-83 BUILDCC=gcc-83
domcox@12849 31 ./configure \
domcox@12849 32 --prefix=/usr \
domcox@12849 33 --disable-pulse \
domcox@12849 34 --disable-a52 \
domcox@12849 35 --disable-glx \
domcox@12849 36 --disable-sout \
domcox@12849 37 --disable-httpd \
domcox@12849 38 --disable-libgcrypt \
paul@19108 39 --enable-ncurses \
slaxemulator@10101 40 $CONFIGURE_ARGS &&
jozee@2944 41 make &&
slaxemulator@9842 42 make install
pascal@13862 43 [ -L /usr/bin/luac ] && rm -f /usr/bin/luac
jozee@2944 44 }
jozee@2944 45
jozee@2944 46 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2944 47 genpkg_rules()
jozee@2944 48 {
pascal@4617 49 mkdir -p $fs/usr/share/pixmaps
pascal@13862 50 cp -a $install/usr/bin $fs/usr
pascal@13862 51 cp -a $install/usr/share/$PACKAGE $fs/usr/share
domcox@12849 52 #Remove extra icons
jozee@2944 53 rm $fs/usr/share/$PACKAGE/*.ico
jozee@2944 54 #copy vlc icon
pascal@13862 55 cp -a $install/usr/share/icons/hicolor/16x16/apps/vlc.png $fs/usr/share/pixmaps
jozee@2944 56 #Remove unnecessary fonts
pascal@19582 57 rm $fs/usr/share/$PACKAGE/skins2/fonts/* 2> /dev/null || true
jozee@2944 58 }