wok annotate vlc/receipt @ rev 6094

tazbb/sort_cook_list: wanted fix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 30 16:34:18 2010 +0200 (2010-08-30)
parents 18eb7bc1d727
children d11911cdab0f
rev   line source
jozee@2944 1 # SliTaz package receipt.
jozee@2944 2
jozee@2944 3 PACKAGE="vlc"
slaxemulator@5346 4 VERSION="1.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"
jozee@5306 8 DEPENDS="libvlc libmad libxml2 ffmpeg-svn libdvdread libcddb libproxy taglib \
pascal@2964 9 libQtCore libQtGui alsa-lib hal dbus \
slaxemulator@5346 10 fribidi speex libraw1394 libmodplug flac libavc1394 libupnp \
slaxemulator@5476 11 libmpeg2 libnotify libsdl-image libvorbis libgl libglu sysfsutils xorg-libXv faad2 glibc-locale"
slaxemulator@5346 12 BUILD_DEPENDS="libmad-dev libxml2-dev ffmpeg-svn-dev libavc1394-dev libdvdread-dev libcddb-dev taglib-dev libproxy-dev Qt4-dev \
slaxemulator@5346 13 hal-dev dbus-dev alsa-lib-dev libgcrypt-dev libupnp-dev libproxy expat-dev xorg-dev-proto zlib-dev \
jozee@2944 14 taglib fribidi fribidi-dev speex speex-dev libraw1394 libraw1394-dev libmodplug libmodplug-dev flac flac-dev \
jozee@5306 15 libmpeg2 libmpeg2-dev libogg-dev faad2 faad2-dev glibc-locale util-linux-ng-uuid-dev libsdl-image xorg-libXv-dev "
jozee@2944 16 TARBALL="$PACKAGE-$VERSION.tar.bz2"
jozee@2944 17 WEB_SITE="http://www.videolan.org/vlc/"
jozee@2944 18 WGET_URL="http://download.videolan.org/pub/videolan/$PACKAGE/$VERSION/$TARBALL"
jozee@4975 19 TAGS="audio video multimedia movie player"
jozee@2944 20
jozee@2944 21 # Rules to configure and make the package.
jozee@2946 22 # Use --enable-ffmpeg to build against shared ffmpeg
jozee@2944 23 compile_rules()
jozee@2944 24 {
jozee@2944 25 cd $src
pascal@5151 26 # Be busybox comptible...
pascal@5151 27 sed -i 's/wc -m/wc -c/' configure*
pascal@4617 28 sed -i 's/ImgReSampleContext/void/' modules/video_filter/imgresample.c
pascal@4617 29 sed -i -e 's:/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf:/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf:' modules/misc/freetype.c
pascal@4617 30 ./configure --prefix=/usr --enable-hal --enable-dbus \
pascal@4617 31 --enable-dbus-control --disable-rpath --enable-release \
pascal@4617 32 --enable-shared \
pascal@4617 33 --enable-dvdread \
pascal@4617 34 --enable-qt4 \
jozee@5306 35 --enable-alsa --enable-taglib --enable-ogg --enable-faad \
pascal@4617 36 --disable-lua --disable-live555 --disable-shout \
pascal@4617 37 --disable-dvdnav --disable-fluidsynth --disable-a52 \
pascal@4617 38 --disable-smb --disable-gnomevfs --disable-glx \
pascal@4617 39 $CONFIGURE_ARGS &&
jozee@2944 40 make &&
jozee@2944 41 make DESTDIR=$PWD/_pkg install
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
jozee@2944 48 cp -a $_pkg/usr/bin $fs/usr
jozee@2944 49 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
jozee@2944 50 #Remove extra icons
jozee@2944 51 rm $fs/usr/share/$PACKAGE/*.png
jozee@2944 52 rm $fs/usr/share/$PACKAGE/*.xpm
jozee@2944 53 rm $fs/usr/share/$PACKAGE/*.ico
jozee@2944 54 #copy vlc icon
jozee@2944 55 cp -a $_pkg/usr/share/$PACKAGE/vlc16x16.png $fs/usr/share/pixmaps
jozee@2944 56 mv $fs/usr/share/pixmaps/vlc16x16.png $fs/usr/share/pixmaps/vlc.png
jozee@2944 57 #Remove unnecessary fonts
jozee@2944 58 rm $fs/usr/share/$PACKAGE/skins2/fonts/*
jozee@2944 59
jozee@2944 60 }