wok diff l3afpad/receipt @ rev 22991

updated l3afpad (0.8.18.1.10 -> 0.8.18.1.11)
author Hans-G?nter Theisgen
date Sun Mar 01 17:39:44 2020 +0100 (2020-03-01)
parents 5d53e8ccbc8d
children 3e2db8247a86
line diff
     1.1 --- a/l3afpad/receipt	Thu Jan 08 02:04:05 2015 +0200
     1.2 +++ b/l3afpad/receipt	Sun Mar 01 17:39:44 2020 +0100
     1.3 @@ -1,26 +1,27 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="l3afpad"
     1.7 -VERSION="0.8.18.1.10"
     1.8 +VERSION="0.8.18.1.11"
     1.9  CATEGORY="utilities"
    1.10 +TAGS="text-editor"
    1.11  SHORT_DESC="Simple text editor forked from Leafpad, supports GTK+ 3.x"
    1.12  MAINTAINER="al.bobylev@gmail.com"
    1.13  LICENSE="LGPL2.1"
    1.14  WEB_SITE="http://www.calno.com/l3afpad/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.17  WGET_URL="http://www.calno.com/$PACKAGE/$TARBALL"
    1.18 -TAGS="text-editor"
    1.19  
    1.20  DEPENDS="gtk+3"
    1.21 -BUILD_DEPENDS="gtk+3-dev"
    1.22 +BUILD_DEPENDS="autoconf automake gtk+3-dev"
    1.23  
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 -	chmod +x $src/install-sh
    1.28 -	./configure \
    1.29 -		--enable-gtkgrid \
    1.30 -		--enable-search-history \
    1.31 +	./autogen.sh &&
    1.32 +	./configure			\
    1.33 +		--enable-gtkgrid	\
    1.34 +		--enable-search-history	\
    1.35  		$CONFIGURE_ARGS &&
    1.36  	make &&
    1.37  	make install
    1.38 @@ -30,6 +31,7 @@
    1.39  genpkg_rules()
    1.40  {
    1.41  	mkdir -p $fs/usr/share/pixmaps
    1.42 -	cp -a $install/usr/bin $fs/usr
    1.43 -	cp -a $install/usr/share/pixmaps/*.png $fs/usr/share/pixmaps
    1.44 +
    1.45 +	cp -a $install/usr/bin			$fs/usr
    1.46 +	cp -a $install/usr/share/pixmaps/*.png	$fs/usr/share/pixmaps
    1.47  }