wok view vlc/receipt @ rev 17395

vlc: remove a false positve trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 27 18:31:22 2014 +0100 (2014-11-27)
parents 9f18a592b782
children 1a9d45ae0a4d
line source
1 # SliTaz package receipt.
3 PACKAGE="vlc"
4 VERSION="2.1.5"
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"
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 \
17 util-linux-uuid-dev x264-dev flac-dev taglib-dev gnutls-dev libupnp-dev \
18 libsamplerate-dev fribidi-dev zvbi-dev opus-dev"
20 compile_rules()
21 {
22 [ -s /var/lib/dbus/machine-id ] || dbus-uuidgen > /var/lib/dbus/machine-id
23 cd $src
24 [ -e /usr/bin/luac ] || ln -s luac5.1 /usr/bin/luac
25 sed -i 's/ERROR_zip_cannot/error_zip_cannot/' modules/access/zip/zipstream.c
26 ./configure \
27 --prefix=/usr \
28 --disable-pulse \
29 --disable-a52 \
30 --disable-glx \
31 --disable-sout \
32 --disable-httpd \
33 --disable-libgcrypt \
34 $CONFIGURE_ARGS &&
35 make &&
36 make install
37 [ -L /usr/bin/luac ] && rm -f /usr/bin/luac
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/usr/share/pixmaps
44 cp -a $install/usr/bin $fs/usr
45 cp -a $install/usr/share/$PACKAGE $fs/usr/share
46 #Remove extra icons
47 rm $fs/usr/share/$PACKAGE/*.ico
48 #copy vlc icon
49 cp -a $install/usr/share/icons/hicolor/16x16/apps/vlc.png $fs/usr/share/pixmaps
50 #Remove unnecessary fonts
51 rm $fs/usr/share/$PACKAGE/skins2/fonts/*
52 }