wok view l3afpad/receipt @ rev 24035

updated sane-backends and sane-backends-dev (1.0.22 -> 1.0.24)
author Hans-G?nter Theisgen
date Sun Apr 11 15:30:14 2021 +0100 (2021-04-11)
parents 49faf1ce59f2
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="l3afpad"
4 VERSION="0.8.18.1.11"
5 CATEGORY="utilities"
6 TAGS="text-editor"
7 SHORT_DESC="Simple text editor forked from Leafpad, supports GTK+ 3.x"
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="LGPL2.1"
10 WEB_SITE="https://github.com/stevenhoneyman/l3afpad"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
15 DEPENDS="gtk+3"
16 BUILD_DEPENDS="autoconf automake gtk+3-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./autogen.sh &&
22 ./configure \
23 --enable-gtkgrid \
24 --enable-search-history \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/pixmaps
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/share/pixmaps/*.png $fs/usr/share/pixmaps
37 }