wok view libQtMimeTypes/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 c4bd69945e93
children efa71a1392d4
line source
1 # SliTaz package receipt.
3 PACKAGE="libQtMimeTypes"
4 BRANCH="123e5255daf5bc780f8ecfa62f796a2aedef9a13"
5 VERSION="${BRANCH:1:7}"
6 CATEGORY="development"
7 SHORT_DESC="A Qt4 backport of the Qt5 mimetypes API"
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="LGPL2.1"
10 WEB_SITE="https://web.archive.org/web/20121025184403/http://qt.gitorious.org/qtplayground/mimetypes"
11 TARBALL="$PACKAGE-$BRANCH.tar.gz"
12 WGET_URL="$WEB_SITE/archive/$BRANCH.tar.gz"
14 DEPENDS="libQtCore"
15 BUILD_DEPENDS="wget cacerts Qt4-dev qmake"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 qmake && make && INSTALL_ROOT=$install make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
28 }