wok-current annotate ibus/receipt @ rev 17108
qps: s/-O2/-Os/g
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Mon Sep 01 17:36:26 2014 +0200 (2014-09-01) |
parents | a878c0bc5dbd |
children | 16df76e1fc6a |
rev | line source |
---|---|
pascal@13358 | 1 # SliTaz package receipt. |
pascal@13358 | 2 |
pascal@13358 | 3 PACKAGE="ibus" |
pascal@13358 | 4 VERSION="1.4.2" |
pascal@13358 | 5 CATEGORY="utilities" |
pascal@13358 | 6 SHORT_DESC="Intelligent Input Bus for Linux / Unix OS" |
pascal@13358 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14996 | 8 LICENSE="LGPL2.1" |
pascal@13358 | 9 WEB_SITE="http://code.google.com/p/ibus/" |
pascal@13358 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@13358 | 11 WGET_URL="http://ibus.googlecode.com/files/$TARBALL" |
pascal@13358 | 12 |
pascal@13358 | 13 DEPENDS="gtk+" |
pascal@13358 | 14 BUILD_DEPENDS="gtk+-dev GConf-dev python-dev dbus-python-dev dbus-glib-dev \ |
pascal@13358 | 15 intltool gettext perl iso-codes" |
pascal@13358 | 16 |
pascal@13358 | 17 # Rules to configure and make the package. |
pascal@13358 | 18 compile_rules() |
pascal@13358 | 19 { |
pascal@13358 | 20 cd $src |
pascal@15340 | 21 mkdir -p $DESTDIR$(ls -d /usr/lib/gtk-2*/2*/immodules/) |
pascal@13358 | 22 ./configure --prefix=/usr \ |
pascal@13358 | 23 --mandir=/usr/share/man \ |
pascal@13358 | 24 --infodir=/usr/share/info \ |
pascal@13358 | 25 --disable-gtk3 \ |
pascal@13358 | 26 $CONFIGURE_ARGS && |
pascal@15340 | 27 make && make DESTDIR=$DESTDIR install |
pascal@13358 | 28 } |
pascal@13358 | 29 |
pascal@13358 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13358 | 31 genpkg_rules() |
pascal@13358 | 32 { |
pascal@15340 | 33 cp -a $src/client/gtk2/im-ibus.la $install/usr/lib/gtk-2*/2*/immodules/ |
pascal@13358 | 34 cp -a $install/* $fs |
pascal@15320 | 35 rm -rf $fs/usr/include |
pascal@15320 | 36 rm -rf $fs/usr/lib/pkgconfig |
pascal@15320 | 37 rm -rf $fs/usr/share/gtk-doc |
pascal@15320 | 38 find $fs/usr/lib | grep 'a$' | xargs rm -f |
pascal@13358 | 39 } |