wok 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 | 5e70242061ce |
children | 3e2db8247a86 |
files | l3afpad/description.txt l3afpad/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/l3afpad/description.txt Sun Mar 01 17:39:44 2020 +0100 1.3 @@ -0,0 +1,4 @@ 1.4 +L3afpad is a simple GTK+ text editor that emphasizes simplicity. As development 1.5 +focuses on keeping weight down to a minimum, only the most essential features 1.6 +are implemented in the editor. L3afpad is simple to use, is easily compiled, 1.7 +requires few libraries, and starts up quickly.
2.1 --- a/l3afpad/receipt Sun Mar 01 17:30:20 2020 +0100 2.2 +++ b/l3afpad/receipt Sun Mar 01 17:39:44 2020 +0100 2.3 @@ -1,26 +1,27 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="l3afpad" 2.7 -VERSION="0.8.18.1.10" 2.8 +VERSION="0.8.18.1.11" 2.9 CATEGORY="utilities" 2.10 +TAGS="text-editor" 2.11 SHORT_DESC="Simple text editor forked from Leafpad, supports GTK+ 3.x" 2.12 MAINTAINER="al.bobylev@gmail.com" 2.13 LICENSE="LGPL2.1" 2.14 WEB_SITE="http://www.calno.com/l3afpad/" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.xz" 2.17 WGET_URL="http://www.calno.com/$PACKAGE/$TARBALL" 2.18 -TAGS="text-editor" 2.19 2.20 DEPENDS="gtk+3" 2.21 -BUILD_DEPENDS="gtk+3-dev" 2.22 +BUILD_DEPENDS="autoconf automake gtk+3-dev" 2.23 2.24 # Rules to configure and make the package. 2.25 compile_rules() 2.26 { 2.27 - chmod +x $src/install-sh 2.28 - ./configure \ 2.29 - --enable-gtkgrid \ 2.30 - --enable-search-history \ 2.31 + ./autogen.sh && 2.32 + ./configure \ 2.33 + --enable-gtkgrid \ 2.34 + --enable-search-history \ 2.35 $CONFIGURE_ARGS && 2.36 make && 2.37 make install 2.38 @@ -30,6 +31,7 @@ 2.39 genpkg_rules() 2.40 { 2.41 mkdir -p $fs/usr/share/pixmaps 2.42 - cp -a $install/usr/bin $fs/usr 2.43 - cp -a $install/usr/share/pixmaps/*.png $fs/usr/share/pixmaps 2.44 + 2.45 + cp -a $install/usr/bin $fs/usr 2.46 + cp -a $install/usr/share/pixmaps/*.png $fs/usr/share/pixmaps 2.47 }