wok view fbida/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 ab43e47cceec
children a3c45ab9082e
line source
1 # SliTaz package receipt.
3 PACKAGE="fbida"
4 VERSION="2.09"
5 CATEGORY="utilities"
6 SHORT_DESC="Image viewer for the framebuffer console"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://linux.bytesex.org/fbida/"
11 WGET_URL="http://dl.bytesex.org/releases/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="libpng giflib tiff jpeg ttf-bitstream-vera libexif zlib \
15 libcurl freetype fontconfig"
16 BUILD_DEPENDS="freetype-dev fontconfig-dev libexif-dev curl-dev jpeg-dev \
17 libpng-dev tiff-dev openmotif-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ln -s 80 jpeg/90
23 make
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin
30 for tool in fbi fbgs exiftran; do
31 cp -a ${src}/${tool} $fs/usr/bin
32 done
33 }