wok annotate atkmm/receipt @ rev 20891

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 26 08:20:18 2019 +0100 (2019-02-26)
parents 76b72f1ad63c
children 68cf96abc146
rev   line source
slaxemulator@7094 1 # SliTaz package receipt.
slaxemulator@7094 2
slaxemulator@7094 3 PACKAGE="atkmm"
slaxemulator@11117 4 VERSION="2.22.6"
slaxemulator@7094 5 CATEGORY="x-window"
slaxemulator@7094 6 SHORT_DESC="C++ interface for the popular Accessibility toolkit."
slaxemulator@7094 7 MAINTAINER="slaxemulator@gmail.com"
pascal@14996 8 LICENSE="LGPL2.1"
slaxemulator@7094 9 BUILD_DEPENDS="atk-dev glib-dev glibmm-dev libgiomm-dev pkg-config"
slaxemulator@7094 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@20421 11 WEB_SITE="https://www.gnome.org/"
slaxemulator@9530 12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
slaxemulator@7094 13
pascal@14996 14 DEPENDS="atk libsigc++"
pascal@14996 15
slaxemulator@7094 16 # Rules to configure and make the package.
slaxemulator@7094 17 compile_rules()
slaxemulator@7094 18 {
slaxemulator@7094 19 cd $src
slaxemulator@10052 20 ./configure $CONFIGURE_ARGS &&
slaxemulator@10052 21 make && make install
slaxemulator@7094 22 }
slaxemulator@7094 23
slaxemulator@7094 24 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@7094 25 genpkg_rules()
slaxemulator@7094 26 {
slaxemulator@7094 27 mkdir -p $fs/usr/lib
pascal@14996 28 cp -a $install/usr/lib/*.so* $fs/usr/lib
slaxemulator@7094 29 }
slaxemulator@7094 30