blob: 490878ee5ce764548d6bb13a22a62059cfc27a74 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# $Id: PKGBUILD 150467 2012-02-18 00:40:03Z allan $
# Contributor: Eric Belanger <eric@archlinux.org>
# Maintainer:
pkgname=ispell
pkgver=3.3.02
pkgrel=5
pkgdesc="An interactive spell-checking program for Unix"
arch=('i686' 'x86_64')
url="http://ficus-www.cs.ucla.edu/geoff/ispell.html"
license=('BSD')
depends=('ncurses')
options=('!makeflags')
source=(http://fmg-www.cs.ucla.edu/geoff/tars/${pkgname}-${pkgver}.tar.gz
license.txt getline.patch)
md5sums=('12087d7555fc2b746425cd167af480fe' 'bf51b6181b9914dedc266ba970bb7319'
'1dca21c5d56405fe592175c3dde2fda2')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
patch -Np0 -i ${srcdir}/getline.patch
sed -i -e 's/#undef USG/#define USG/' \
-e 's|/usr/local|/usr|' \
-e 's|/lib|/lib/ispell|' local.h.linux
cp local.h.linux local.h
make TMPDIR=/tmp all
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
# creating directory structure
install -dm755 ${pkgdir}/usr/{bin,lib/ispell,share/man/man{1,5}}
# Installing binary tools
for b in buildhash findaffix icombine ijoin ispell iwhich munchlist tryaffix; do
install -m755 $b ${pkgdir}/usr/bin/
done
# Installing man pages
install -m644 ispell.1 ${pkgdir}/usr/share/man/man1/ispell.1
install -m644 ispell.5 ${pkgdir}/usr/share/man/man5/ispell.5
# Installing dictionnaries
install -m644 languages/american/americanmed.hash \
${pkgdir}/usr/lib/ispell/americanmed.hash
install -m644 languages/english/english.aff \
${pkgdir}/usr/lib/ispell/english.aff
ln -s americanmed.hash ${pkgdir}/usr/lib/ispell/american.hash
ln -s americanmed.hash ${pkgdir}/usr/lib/ispell/english.hash
# Installing license
install -Dm644 ${srcdir}/license.txt \
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
}
|