1
0
forked from ports/contrib

26 lines
575 B
Plaintext
Raw Normal View History

2006-11-20 07:26:53 +10:00
# Description: Generic Spell Checking Library.
2008-03-18 22:06:30 +11:00
# URL: http://www.abisource.com/enchant/
2008-03-26 13:45:31 +11:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
2008-03-18 22:06:30 +11:00
# Packager: James Mills, prologic at shortcircuit dot net dot au
2008-04-29 18:56:59 +10:00
# Depends on: aspell glib
2006-11-14 09:01:22 +10:00
name=enchant
2008-05-15 00:57:17 +10:00
version=1.4.2
2006-11-14 09:01:22 +10:00
release=1
2008-03-18 22:06:30 +11:00
source=(http://www.abisource.com/downloads/enchant/$version/enchant-$version.tar.gz)
2006-11-14 09:01:22 +10:00
build() {
2008-05-15 00:57:17 +10:00
cd enchant-$version
./configure \
--prefix=/usr \
--mandir=/usr/man \
--disable-static \
--disable-dependency-tracking
make
2008-03-18 22:06:30 +11:00
make DESTDIR=$PKG install
2008-05-15 00:57:17 +10:00
chmod a-x $PKG/usr/lib/*.so
2006-11-14 09:01:22 +10:00
}
2008-03-18 22:06:30 +11:00