wok-next annotate pangomm/receipt @ rev 17784
Fix: disable llvm compiler version check
author | Alexander Medvedev <devl547@gmail.com> |
---|---|
date | Sat Mar 14 21:36:00 2015 +0000 (2015-03-14) |
parents | 496740a0005b |
children | b367284a8ac3 |
rev | line source |
---|---|
pankso@2541 | 1 # SliTaz package receipt. |
pankso@2541 | 2 |
pankso@2541 | 3 PACKAGE="pangomm" |
devl547@17597 | 4 VERSION="2.35.1" |
pankso@2541 | 5 CATEGORY="x-window" |
pankso@2541 | 6 SHORT_DESC="Pango binding for GTKmm." |
pankso@2541 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@14996 | 8 LICENSE="LGPL2.1" |
devl547@17597 | 9 TARBALL="$PACKAGE-$VERSION.tar.xz" |
slaxemulator@7092 | 10 WEB_SITE="http://www.gnome.org/" |
slaxemulator@9529 | 11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" |
pankso@2541 | 12 |
pascal@14996 | 13 DEPENDS="pixman cairomm glibmm libgiomm pango gcc-lib-base" |
pascal@15244 | 14 BUILD_DEPENDS="cairo-dev cairomm-dev glibmm-dev pango-dev libxml2-dev" |
pascal@14996 | 15 |
pankso@2541 | 16 # Rules to configure and make the package. |
pankso@2541 | 17 compile_rules() |
pankso@2541 | 18 { |
pankso@2541 | 19 cd $src |
pankso@2541 | 20 ./configure \ |
slaxemulator@10085 | 21 --disable-documentation \ |
slaxemulator@10085 | 22 $CONFIGURE_ARGS && |
pankso@2541 | 23 make && |
slaxemulator@9529 | 24 make install |
pankso@2541 | 25 } |
pankso@2541 | 26 |
pankso@2541 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@2541 | 28 genpkg_rules() |
pankso@2541 | 29 { |
pankso@2541 | 30 mkdir -p $fs/usr/lib |
pascal@14996 | 31 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@2541 | 32 } |
slaxemulator@6397 | 33 |