wok diff geany-plugins/receipt @ rev 11659

xfe, Improve receipt
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Feb 12 22:40:16 2012 +0100 (2012-02-12)
parents aeecd083b549
children 4ca3729bd5c4
line diff
     1.1 --- a/geany-plugins/receipt	Fri Jan 07 04:41:36 2011 +0000
     1.2 +++ b/geany-plugins/receipt	Sun Feb 12 22:40:16 2012 +0100
     1.3 @@ -1,17 +1,29 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="geany-plugins"
     1.7 -VERSION="0.20"
     1.8 +VERSION="0.21"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Additionnal plugins for Geany."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 -WANTED="geany"
    1.13 -DEPENDS="expat gtk+ xorg-libXdamage"
    1.14 -WEB_SITE="http://geany.uvena.de/"
    1.15 +DEPENDS="enchant gtkspell geany lua"
    1.16 +BUILD_DEPENDS="enchant-dev gtkspell-dev geany-dev lua-dev intltool"
    1.17 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.18 +WEB_SITE="http://plugins.geany.org/"
    1.19 +WGET_URL="$WEB_SITE/$PACKAGE/$TARBALL"
    1.20 +
    1.21 +# Rules to configure and make the package.
    1.22 +compile_rules()
    1.23 +{
    1.24 +	cd $src
    1.25 +	./configure --libexecdir=/usr/lib $CONFIGURE_ARGS &&
    1.26 +	make && make install
    1.27 +}
    1.28  
    1.29  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.30  genpkg_rules()
    1.31  {
    1.32 -	mkdir -p $fs/usr/lib/geany
    1.33 -	cp -a $_pkg/usr/lib/geany/*.so $fs/usr/lib/geany
    1.34 +	mkdir -p $fs/usr/lib/geany $fs/usr/share
    1.35 +	cp -a $_pkg/usr/lib/geany $fs/usr/lib
    1.36 +	cp -a $_pkg/usr/lib/geany-plugins $fs/usr/lib
    1.37 +	cp -a $_pkg/usr/lib/geany-plugins $fs/usr/share
    1.38  }