wok view vlc/receipt @ rev 21806

Up vlc (3.0.6) again
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 19:53:59 2019 +0200 (2019-08-15)
parents 5842cd84e4aa
children dc0af390172d
line source
1 # SliTaz package receipt.
3 PACKAGE="vlc"
4 VERSION="3.0.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="MPEG, VCD/DVD, and DivX player"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.videolan.org/vlc/"
11 WGET_URL="http://download.videolan.org/pub/videolan/$PACKAGE/$VERSION/$TARBALL"
12 TAGS="audio video multimedia movie player"
14 DEPENDS="libQtCore libQtGui libvlc gcc83-lib-base"
15 BUILD_DEPENDS="Qt4-dev alsa-lib-dev dbus-dev ffmpeg-dev gettext \
16 libmad-dev lua5.1-dev tar xcb-util-dev yasm expat-dev libxml2-dev libegl-mesa \
17 util-linux-uuid-dev x264-dev flac-dev taglib-dev gnutls-dev libupnp-dev \
18 libsamplerate-dev fribidi-dev zvbi-dev opus-dev gmp-dev ncurses-dev x265-dev \
19 libgnutls gcc83 gcc83-lib-base"
21 compile_rules()
22 {
23 [ -s /var/lib/dbus/machine-id ] || dbus-uuidgen > /var/lib/dbus/machine-id
24 cd $src
25 [ -e /usr/bin/luac ] || ln -s luac5.1 /usr/bin/luac
26 sed -i 's/ERROR_zip_cannot/error_zip_cannot/' modules/access/zip/zipstream.c
27 # export ncurses paths
28 export NCURSES_CFLAGS="-I/usr/include"
29 export NCURSES_LIBS="-L/lib -lncurses -ltinfo"
30 export CC=gcc-83 CXX=g++-83 BUILDCC=gcc-83
31 ./configure \
32 --prefix=/usr \
33 --disable-pulse \
34 --disable-a52 \
35 --disable-glx \
36 --disable-sout \
37 --disable-httpd \
38 --disable-libgcrypt \
39 --enable-ncurses \
40 $CONFIGURE_ARGS &&
41 make &&
42 make install
43 [ -L /usr/bin/luac ] && rm -f /usr/bin/luac
44 }
46 # Rules to gen a SliTaz package suitable for Tazpkg.
47 genpkg_rules()
48 {
49 mkdir -p $fs/usr/share/pixmaps
50 cp -a $install/usr/bin $fs/usr
51 cp -a $install/usr/share/$PACKAGE $fs/usr/share
52 #Remove extra icons
53 rm $fs/usr/share/$PACKAGE/*.ico
54 #copy vlc icon
55 cp -a $install/usr/share/icons/hicolor/16x16/apps/vlc.png $fs/usr/share/pixmaps
56 #Remove unnecessary fonts
57 rm $fs/usr/share/$PACKAGE/skins2/fonts/* 2> /dev/null || true
58 }