wok annotate vlc/receipt @ rev 22062
created package get-e-uae
author | Hans-G?nter Theisgen |
---|---|
date | Thu Oct 24 16:40:55 2019 +0100 (2019-10-24) |
parents | b5d6394fc7d4 |
children | ad69433c853a |
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@21807 | 13 COOKOPTS="!fixdesktops" |
pascal@15000 | 14 |
pascal@21805 | 15 DEPENDS="libQtCore libQtGui libvlc gcc83-lib-base" |
domcox@12849 | 16 BUILD_DEPENDS="Qt4-dev alsa-lib-dev dbus-dev ffmpeg-dev gettext \ |
pascal@19772 | 17 libmad-dev lua5.1-dev tar xcb-util-dev yasm expat-dev libxml2-dev libegl-mesa \ |
pascal@17392 | 18 util-linux-uuid-dev x264-dev flac-dev taglib-dev gnutls-dev libupnp-dev \ |
pascal@20592 | 19 libsamplerate-dev fribidi-dev zvbi-dev opus-dev gmp-dev ncurses-dev x265-dev \ |
pascal@21806 | 20 libgnutls gcc83 gcc83-lib-base" |
jozee@2944 | 21 |
jozee@2944 | 22 compile_rules() |
jozee@2944 | 23 { |
domcox@12849 | 24 [ -s /var/lib/dbus/machine-id ] || dbus-uuidgen > /var/lib/dbus/machine-id |
jozee@2944 | 25 cd $src |
pascal@13863 | 26 [ -e /usr/bin/luac ] || ln -s luac5.1 /usr/bin/luac |
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-sout \ |
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 |
pascal@19582 | 55 rm $fs/usr/share/$PACKAGE/skins2/fonts/* 2> /dev/null || true |
jozee@2944 | 56 } |