wok view chemtool/receipt @ rev 13062

Up: geany-plugins to 0.21.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Jun 20 17:20:12 2012 +0000 (2012-06-20)
parents a1644dbcf632
children 39acb734f263
line source
1 # SliTaz package receipt.
3 PACKAGE="chemtool"
4 VERSION="1.6.12"
5 CATEGORY="graphics"
6 SHORT_DESC="Small program for drawing chemical structures."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ xorg-libXdamage"
9 BUILD_DEPENDS="gtk+-dev xorg-xproto"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/"
12 WGET_URL="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/$TARBALL"
13 TAGS="chemistry"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 # Needed directories.
28 mkdir -p $fs/usr/share/locale $fs/usr/share/pixmaps \
29 $fs/usr/share/examples/chemtool
31 # Binary file.
32 cp -a $_pkg/usr/bin $fs/usr
34 # French locale, pixmap and menu.
35 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
36 cp -a $src/gnome/chemtool.png $fs/usr/share/pixmaps
38 # Examples.
39 cp -a $src/examples/a*.cht $fs/usr/share/examples/chemtool
40 cp -a $src/examples/c*.cht $fs/usr/share/examples/chemtool
41 cp -a $src/examples/p*.cht $fs/usr/share/examples/chemtool
42 cp -a $src/examples/t*.cht $fs/usr/share/examples/chemtool
43 }