wok diff obconf/receipt @ rev 18820

syslinux/iso2exe.sh: -f should keep flavor info
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 16 10:28:02 2016 +0100 (2016-01-16)
parents 533c0cab6960
children 47aa4c8e9f44
line diff
     1.1 --- a/obconf/receipt	Wed Oct 22 03:42:23 2014 +0300
     1.2 +++ b/obconf/receipt	Sat Jan 16 10:28:02 2016 +0100
     1.3 @@ -3,11 +3,11 @@
     1.4  PACKAGE="obconf"
     1.5  VERSION="2.0.4"
     1.6  CATEGORY="x-window"
     1.7 -SHORT_DESC="Openbox WM configuration interface."
     1.8 +SHORT_DESC="Openbox configuration tool"
     1.9  MAINTAINER="pankso@slitaz.org"
    1.10  LICENSE="GPL2"
    1.11  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 -WEB_SITE="http://icculus.org/openbox/"
    1.13 +WEB_SITE="http://openbox.org/wiki/ObConf:About"
    1.14  WGET_URL="http://openbox.org/dist/obconf/$TARBALL"
    1.15  TAGS="openbox"
    1.16  HOST_ARCH="i486 arm"
    1.17 @@ -20,17 +20,20 @@
    1.18  # Rules to configure and make the package.
    1.19  compile_rules()
    1.20  {
    1.21 +	cp -f $stuff/ru.po $src/po/
    1.22 +
    1.23  	./configure $CONFIGURE_ARGS &&
    1.24  	sed -i 's/^mkdir_p = .*/mkdir_p = mkdir -p/' po/Makefile &&
    1.25  	make && make install
    1.26 +
    1.27 +	cp -f $stuff/obconf.desktop $install/usr/share/applications
    1.28  }
    1.29  
    1.30  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.31  genpkg_rules()
    1.32  {
    1.33 -	mkdir -p $fs/usr/share/applications
    1.34 +	mkdir -p $fs/usr/share/obconf
    1.35  
    1.36  	cp -a $install/usr/bin $fs/usr
    1.37 -	cp -a $install/usr/share/obconf $fs/usr/share
    1.38 -	cp -a $stuff/obconf.desktop $fs/usr/share/applications
    1.39 +	cp -a $install/usr/share/obconf/obconf.glade $fs/usr/share/obconf
    1.40  }