# HG changeset patch # User Hans-G?nter Theisgen # Date 1583080784 -3600 # Node ID 49faf1ce59f2546674c507cfb87c27ccc89c675c # Parent 5e70242061ce6fa8f5903d364b94c36c9fdf2f63 updated l3afpad (0.8.18.1.10 -> 0.8.18.1.11) diff -r 5e70242061ce -r 49faf1ce59f2 l3afpad/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/l3afpad/description.txt Sun Mar 01 17:39:44 2020 +0100 @@ -0,0 +1,4 @@ +L3afpad is a simple GTK+ text editor that emphasizes simplicity. As development +focuses on keeping weight down to a minimum, only the most essential features +are implemented in the editor. L3afpad is simple to use, is easily compiled, +requires few libraries, and starts up quickly. diff -r 5e70242061ce -r 49faf1ce59f2 l3afpad/receipt --- a/l3afpad/receipt Sun Mar 01 17:30:20 2020 +0100 +++ b/l3afpad/receipt Sun Mar 01 17:39:44 2020 +0100 @@ -1,26 +1,27 @@ # SliTaz package receipt. PACKAGE="l3afpad" -VERSION="0.8.18.1.10" +VERSION="0.8.18.1.11" CATEGORY="utilities" +TAGS="text-editor" SHORT_DESC="Simple text editor forked from Leafpad, supports GTK+ 3.x" MAINTAINER="al.bobylev@gmail.com" LICENSE="LGPL2.1" WEB_SITE="http://www.calno.com/l3afpad/" + TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="http://www.calno.com/$PACKAGE/$TARBALL" -TAGS="text-editor" DEPENDS="gtk+3" -BUILD_DEPENDS="gtk+3-dev" +BUILD_DEPENDS="autoconf automake gtk+3-dev" # Rules to configure and make the package. compile_rules() { - chmod +x $src/install-sh - ./configure \ - --enable-gtkgrid \ - --enable-search-history \ + ./autogen.sh && + ./configure \ + --enable-gtkgrid \ + --enable-search-history \ $CONFIGURE_ARGS && make && make install @@ -30,6 +31,7 @@ genpkg_rules() { mkdir -p $fs/usr/share/pixmaps - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share/pixmaps/*.png $fs/usr/share/pixmaps + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/pixmaps/*.png $fs/usr/share/pixmaps }