wok annotate xdelta/receipt @ rev 6653

Fixed gdk-pixbuf. Added xpm and jpeg to be build into gdk-pixbuf instead of being just plugins. Fixes some missing icons and background from being missig in slitaz desktop.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Oct 11 01:06:19 2010 +0000 (2010-10-11)
parents 63a9f1a08578
children 7c1d1ee26141
rev   line source
pascal@2368 1 # SliTaz package receipt.
pascal@2368 2
pascal@2368 3 PACKAGE="xdelta"
slaxemulator@6363 4 VERSION="3.0z"
pascal@2368 5 CATEGORY="system-tools"
pascal@2368 6 SHORT_DESC="Binary diff, VCDIFF/RFC 3284 delta compression."
pascal@2368 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@2368 8 TARBALL="$PACKAGE$VERSION.tar.gz"
pascal@2368 9 WEB_SITE="http://xdelta.org/"
pascal@2368 10 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
pascal@2368 11
pascal@2368 12 # Rules to configure and make the package.
pascal@2368 13 compile_rules()
pascal@2368 14 {
pascal@2368 15 mv $PACKAGE$VERSION $PACKAGE-$VERSION 2> /dev/null
pascal@2368 16 cd $src
pascal@2368 17 make
pascal@2368 18 }
pascal@2368 19
pascal@2368 20 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2368 21 genpkg_rules()
pascal@2368 22 {
pascal@2368 23 mkdir -p $fs/usr/bin
pascal@2368 24 cp -a $src/xdelta3 $fs/usr/bin
pascal@2368 25 }
pascal@2368 26