wok view chemtool/receipt @ rev 11819

Up: seamonkey to 2.7.2.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 25 14:15:40 2012 -0500 (2012-02-25)
parents 02bbaa9d12ba
children 4f527a2114bf
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 $fs/usr/share/applications
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
37 cp -a $stuff/chemtool.desktop $fs/usr/share/applications
39 # Examples.
40 cp -a $src/examples/a*.cht $fs/usr/share/examples/chemtool
41 cp -a $src/examples/c*.cht $fs/usr/share/examples/chemtool
42 cp -a $src/examples/p*.cht $fs/usr/share/examples/chemtool
43 cp -a $src/examples/t*.cht $fs/usr/share/examples/chemtool
44 }