wok annotate xdg-utils/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 d6b99c62ef00
children 9c0c1fdfe763
rev   line source
paul@3234 1 # SliTaz package receipt.
paul@3234 2
paul@3234 3 PACKAGE="xdg-utils"
monghitri@13985 4 VERSION="1.1.0-rc1"
paul@3234 5 CATEGORY="development"
paul@3234 6 SHORT_DESC="Assists desktop integration tasks."
paul@3234 7 MAINTAINER="paul@slitaz.org"
pascal@15601 8 LICENSE="MIT"
monghitri@13985 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20679 10 WEB_SITE="https://www.freedesktop.org/wiki/Software/xdg-utils/"
paul@3234 11 WGET_URL="http://portland.freedesktop.org/download/$TARBALL"
pankso@16218 12 HOST_ARCH="i486 arm"
paul@3234 13
paul@3234 14 # Rules to configure and make the package.
paul@3234 15 compile_rules()
paul@3234 16 {
paul@3234 17 ./configure \
paul@3234 18 $CONFIGURE_ARGS &&
pankso@16218 19 make && make install
paul@3234 20 }
paul@3234 21
paul@3234 22 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@3234 23 genpkg_rules()
paul@3234 24 {
paul@3234 25 mkdir -p $fs/usr
pascal@15601 26 cp -a $install/usr/bin $fs/usr
paul@3234 27 }
paul@3234 28