wok view l3afpad/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents ce9148142ee8
children 49faf1ce59f2
line source
1 # SliTaz package receipt.
3 PACKAGE="l3afpad"
4 VERSION="0.8.18.1.10"
5 CATEGORY="utilities"
6 SHORT_DESC="Simple text editor forked from Leafpad, supports GTK+ 3.x"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://www.calno.com/l3afpad/"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="http://www.calno.com/$PACKAGE/$TARBALL"
12 TAGS="text-editor"
14 DEPENDS="gtk+3"
15 BUILD_DEPENDS="gtk+3-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 chmod +x $src/install-sh
21 ./configure \
22 --enable-gtkgrid \
23 --enable-search-history \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/pixmaps
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/share/pixmaps/*.png $fs/usr/share/pixmaps
35 }