wok view ratpoison/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 5d53e8ccbc8d
children 17091bc7c301
line source
1 # SliTaz package receipt.
3 PACKAGE="ratpoison"
4 VERSION="1.4.9"
5 CATEGORY="x-window"
6 TAGS="window-manager"
7 SHORT_DESC="An extremely light-weight window manager, using only keyboard."
8 MAINTAINER="gokhlayeh@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://www.nongnu.org/ratpoison/"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL"
15 DEPENDS="microperl xorg-libXinerama xorg-libXtst"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure &&
21 make CFLAGS="$CFLAGS -DHAVE_GETLINE" &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/share/ratpoison $fs/usr/share
32 }