wok annotate l3afpad/receipt @ rev 23696

Up libtcplay (3.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 27 09:29:39 2020 +0000 (2020-04-27)
parents 49faf1ce59f2
children 5ea0ce1cecc0
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"
Hans-G?nter@22992 10 WEB_SITE="https://github.com/stevenhoneyman/l3afpad"
Hans-G?nter@22991 11
pascal@15721 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
Hans-G?nter@22992 13 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
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 }