wok annotate atkmm/receipt @ rev 14996

Add LGPL2.1 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 11:00:21 2013 +0000 (2013-08-10)
parents 5aa71a7dde59
children 86790a278e70
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"
slaxemulator@7094 11 WEB_SITE="http://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