wok annotate superswitcher/receipt @ rev 18984
clementine: update bdeps
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Mar 16 21:28:57 2016 +0200 (2016-03-16) |
parents | 380ffe05937a |
children | 6135577f4d08 |
rev | line source |
---|---|
mallory@3177 | 1 # SliTaz package receipt. |
mallory@3177 | 2 |
mallory@3177 | 3 PACKAGE="superswitcher" |
mallory@3177 | 4 VERSION="0.6" |
mallory@3177 | 5 CATEGORY="x-window" |
mallory@3177 | 6 SHORT_DESC="Replacement for the Alt-Tab window switching behavior" |
mallory@3177 | 7 MAINTAINER="mallory@sweetpeople.org" |
pascal@15000 | 8 LICENSE="GPL2" |
mallory@3177 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
mallory@3177 | 10 WEB_SITE="http://code.google.com/p/superswitcher/" |
mallory@3177 | 11 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" |
mallory@3177 | 12 |
pascal@15000 | 13 DEPENDS="gtk+ libwnck GConf" |
pascal@15628 | 14 BUILD_DEPENDS="perl-xml-parser intltool glib-dev gtk+-dev libwnck-dev \ |
pascal@15628 | 15 autoconf automake" |
pascal@15000 | 16 |
mallory@3177 | 17 # Rules to configure and make the package. |
mallory@3177 | 18 compile_rules() |
mallory@3177 | 19 { |
mallory@3177 | 20 cd $src |
pascal@12677 | 21 find . -name '*.[ch]*' | xargs sed -i 's|<glib/.*h|<glib.h|' |
gokhlayeh@8683 | 22 |
gokhlayeh@8683 | 23 # Fix from Gentoo: http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/x11-misc/superswitcher/superswitcher-0.6.ebuild |
gokhlayeh@8683 | 24 patch -p1 < $stuff/superswitcher-0.6-wnck-workspace.patch |
pascal@9320 | 25 sed -i '/-DG.*_DISABLE_DEPRECATED/d;s/@WARN_CFLAGS@//' src/Makefile.am |
gokhlayeh@8683 | 26 aclocal |
gokhlayeh@8683 | 27 autoconf |
gokhlayeh@8683 | 28 automake --add-missing |
pascal@9320 | 29 sed -i '/GNOME_COMPILE_WARNINGS/d' configure |
mallory@3177 | 30 ./configure \ |
mallory@3177 | 31 --prefix=/usr \ |
mallory@3177 | 32 --infodir=/usr/share/info \ |
mallory@3177 | 33 --mandir=/usr/share/man \ |
mallory@3177 | 34 $CONFIGURE_ARGS && |
pascal@15000 | 35 make && make DESTDIR=$DESTDIR install |
mallory@3177 | 36 } |
mallory@3177 | 37 |
mallory@3177 | 38 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@3177 | 39 genpkg_rules() |
mallory@3177 | 40 { |
mallory@3177 | 41 mkdir -p $fs/usr |
pascal@15000 | 42 cp -a $install/usr/bin $fs/usr |
mallory@3177 | 43 } |
mallory@3177 | 44 |