wok view chemtool/receipt @ rev 275

UP: slitaz-hacker with new default files
author Christophe Lincoln <pankso@slitaz.org>
date Mon Feb 25 16:00:35 2008 +0100 (2008-02-25)
parents 4959e5789caa
children eb4e6a1af180
line source
1 # SliTaz package receipt.
3 PACKAGE="chemtool"
4 VERSION="1.6.11"
5 CATEGORY="graphics"
6 SHORT_DESC="Small program for drawing chemical structures."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/"
11 WGET_URL="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/$TARBALL"
12 JWM_MENU='Graphics:<Program icon="chemtool.xpm" label="Chemical Tool">chemtool</Program>'
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 # Needed directories.
27 mkdir -p $fs/usr/share/locale $fs/usr/share/pixmaps \
28 $fs/usr/share/examples/chemtool
30 # Binary file.
31 cp -a $_pkg/usr/bin $fs/usr
32 strip -s $fs/usr/bin/*
34 # French locale and pixmap.
35 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
36 cp -a $src/chemtool.xpm $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 }