wok view vlc/receipt @ rev 19361

Up tazpkg (919)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 03 08:46:48 2016 +0200 (2016-08-03)
parents f8a2fafebed5
children d74ed046ff3b
line source
1 # SliTaz package receipt.
3 PACKAGE="vlc"
4 VERSION="2.2.3"
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 gmp-dev ncurses-dev x265-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 # export ncurses paths
27 export NCURSES_CFLAGS="-I/usr/include"
28 export NCURSES_LIBS="-L/lib -lncurses -ltinfo"
29 ./configure \
30 --prefix=/usr \
31 --disable-pulse \
32 --disable-a52 \
33 --disable-glx \
34 --disable-sout \
35 --disable-httpd \
36 --disable-libgcrypt \
37 --enable-ncurses \
38 $CONFIGURE_ARGS &&
39 make &&
40 make install
41 [ -L /usr/bin/luac ] && rm -f /usr/bin/luac
42 }
44 # Rules to gen a SliTaz package suitable for Tazpkg.
45 genpkg_rules()
46 {
47 mkdir -p $fs/usr/share/pixmaps
48 cp -a $install/usr/bin $fs/usr
49 cp -a $install/usr/share/$PACKAGE $fs/usr/share
50 #Remove extra icons
51 rm $fs/usr/share/$PACKAGE/*.ico
52 #copy vlc icon
53 cp -a $install/usr/share/icons/hicolor/16x16/apps/vlc.png $fs/usr/share/pixmaps
54 #Remove unnecessary fonts
55 rm $fs/usr/share/$PACKAGE/skins2/fonts/*
56 }