wok annotate 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
rev   line source
pascal@15721 1 # SliTaz package receipt.
pascal@15721 2
pascal@15721 3 PACKAGE="l3afpad"
Hans-G?nter@22991 4 VERSION="0.8.18.1.11"
pascal@15721 5 CATEGORY="utilities"
Hans-G?nter@22991 6 TAGS="text-editor"
pascal@15721 7 SHORT_DESC="Simple text editor forked from Leafpad, supports GTK+ 3.x"
pascal@15721 8 MAINTAINER="al.bobylev@gmail.com"
pascal@15721 9 LICENSE="LGPL2.1"
pascal@15721 10 WEB_SITE="http://www.calno.com/l3afpad/"
Hans-G?nter@22991 11
pascal@15721 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
pascal@15721 13 WGET_URL="http://www.calno.com/$PACKAGE/$TARBALL"
pascal@15721 14
pascal@15721 15 DEPENDS="gtk+3"
Hans-G?nter@22991 16 BUILD_DEPENDS="autoconf automake gtk+3-dev"
pascal@15721 17
pascal@15721 18 # Rules to configure and make the package.
pascal@15721 19 compile_rules()
pascal@15721 20 {
Hans-G?nter@22991 21 ./autogen.sh &&
Hans-G?nter@22991 22 ./configure \
Hans-G?nter@22991 23 --enable-gtkgrid \
Hans-G?nter@22991 24 --enable-search-history \
pascal@15721 25 $CONFIGURE_ARGS &&
pascal@15721 26 make &&
pascal@15721 27 make install
pascal@15721 28 }
pascal@15721 29
pascal@15721 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@15721 31 genpkg_rules()
pascal@15721 32 {
pascal@15721 33 mkdir -p $fs/usr/share/pixmaps
Hans-G?nter@22991 34
Hans-G?nter@22991 35 cp -a $install/usr/bin $fs/usr
Hans-G?nter@22991 36 cp -a $install/usr/share/pixmaps/*.png $fs/usr/share/pixmaps
pascal@15721 37 }