blob: c45d49ea448ec76a99660a341c33e8d85b2e98fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Contributor: Connor Behan <connor.behan@gmail.com>
pkgname=chemtool-proper
pkgver=1.6.14
pkgrel=1
pkgdesc="Chemtool without the stupid right justified help menu"
arch=(i686 x86_64)
license=('GPL2')
url="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/chemtool.html"
depends=('gtk2')
replaces=('chemtool')
provides=('chemtool')
options=(!libtool)
source=(http://ruby.chemie.uni-freiburg.de/~martin/chemtool/chemtool-$pkgver.tar.gz chemtool.desktop)
build() {
cd "$srcdir"/chemtool-$pkgver
sed -i -e 's/.*right_justify.*//g' main.c
./configure --prefix=/usr --mandir=/usr/share/man
make
}
package() {
cd "$srcdir"/chemtool-$pkgver
make DESTDIR="$pkgdir" install
install -D -m644 gnome/chemtool.png "$pkgdir"/usr/share/pixmaps/chemtool.png
install -D -m644 "$srcdir"/chemtool.desktop "$pkgdir"/usr/share/applications/chemtool.desktop
}
md5sums=('3a97680f0abe1327af1f0072551a68e2'
'8cbb6f7021bd5aaa6f6a31fc4d95a06e')
|