wok diff yad/receipt @ rev 14266

syslinux/iso2exe: add partition table
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 01 17:47:04 2013 +0200 (2013-04-01)
parents e198cb1a4206
children 695e22e54749
line diff
     1.1 --- a/yad/receipt	Tue Mar 06 16:59:03 2012 +0100
     1.2 +++ b/yad/receipt	Mon Apr 01 17:47:04 2013 +0200
     1.3 @@ -1,32 +1,34 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="yad"
     1.7 -VERSION="0.17.1.1"
     1.8 +VERSION="0.20.1"
     1.9  CATEGORY="utilities"
    1.10  SHORT_DESC="Display graphical dialogs from shell scripts or command line"
    1.11  MAINTAINER="devl547@gmail.com"
    1.12  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.13  WEB_SITE="http://code.google.com/p/yad/"
    1.14  WGET_URL="http://yad.googlecode.com/files/$TARBALL"
    1.15 +TAGS="gtk2"
    1.16  
    1.17  DEPENDS="gtk+"
    1.18 -BUILD_DEPENDS="intltool gettext pkg-config glib-dev gtk+-dev"
    1.19 +BUILD_DEPENDS="gtk+-dev"
    1.20  
    1.21  # Rules to configure and make the package.
    1.22  compile_rules()
    1.23  {
    1.24 -	cd $src
    1.25 +	patch -p1 < $stuff/ru.patch
    1.26  	./configure \
    1.27  		--enable-icon-browser &&
    1.28 -	make && make install
    1.29 +	make &&
    1.30 +	make install
    1.31  }
    1.32  
    1.33  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.34  genpkg_rules()
    1.35  {
    1.36 -	mkdir -p $fs/usr/bin \
    1.37 -		$fs/usr/share
    1.38 -	cp -a $install/usr/bin/* $fs/usr/bin
    1.39 -	cp -ar $install/usr/share/applications $fs/usr/share
    1.40 -	cp -ar $install/usr/share/icons $fs/usr/share
    1.41 +	mkdir -p \
    1.42 +		$fs/usr/share/pixmaps
    1.43 +	cp -a $install/usr/bin $fs/usr
    1.44 +	cp -a $install/usr/share/icons/hicolor/48x48/apps/yad.png \
    1.45 +		$fs/usr/share/pixmaps
    1.46  }