wok annotate chemtool/receipt @ rev 5413

Up: gajim (0.13.4) + build fix
author Alexander Medvedev <devl547@gmail.com>
date Mon May 03 19:48:47 2010 +0000 (2010-05-03)
parents 2407153fdf77
children 4b390bffacff
rev   line source
pankso@46 1 # SliTaz package receipt.
pankso@46 2
pankso@46 3 PACKAGE="chemtool"
pankso@46 4 VERSION="1.6.11"
pankso@207 5 CATEGORY="graphics"
pankso@46 6 SHORT_DESC="Small program for drawing chemical structures."
pankso@46 7 MAINTAINER="pankso@slitaz.org"
pascal@2513 8 DEPENDS="gtk+ xorg-libXdamage"
pascal@1460 9 BUILD_DEPENDS="gtk+-dev xorg-xproto"
pankso@46 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@46 11 WEB_SITE="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/"
pankso@46 12 WGET_URL="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/$TARBALL"
jozee@4933 13 TAGS="chemistry"
pankso@46 14
pankso@46 15 # Rules to configure and make the package.
pankso@46 16 compile_rules()
pankso@46 17 {
pankso@46 18 cd $src
pascal@1460 19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@1460 20 make &&
pankso@46 21 make DESTDIR=$PWD/_pkg install
pankso@46 22 }
pankso@46 23
pankso@46 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@46 25 genpkg_rules()
pankso@46 26 {
pankso@46 27 # Needed directories.
pankso@46 28 mkdir -p $fs/usr/share/locale $fs/usr/share/pixmaps \
erjo@511 29 $fs/usr/share/examples/chemtool $fs/usr/share/applications
pankso@46 30
pankso@46 31 # Binary file.
pankso@46 32 cp -a $_pkg/usr/bin $fs/usr
pankso@46 33 strip -s $fs/usr/bin/*
pankso@46 34
erjo@511 35 # French locale, pixmap and menu.
pankso@46 36 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@511 37 cp -a $src/gnome/chemtool.png $fs/usr/share/pixmaps
erjo@512 38 cp -a stuff/chemtool.desktop $fs/usr/share/applications
pankso@46 39
pankso@46 40 # Examples.
pankso@46 41 cp -a $src/examples/a*.cht $fs/usr/share/examples/chemtool
pankso@46 42 cp -a $src/examples/c*.cht $fs/usr/share/examples/chemtool
pankso@46 43 cp -a $src/examples/p*.cht $fs/usr/share/examples/chemtool
pankso@46 44 cp -a $src/examples/t*.cht $fs/usr/share/examples/chemtool
pankso@46 45 }