blob: a73915b41763c4d7a8bdd189e934ea409c5bf280 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
NAME="hyphen"
DESC="Library for high quality hyphenation and justification"
MAKEDEPS="perl"
PKG_VER=2.8.8
SOURCE="https://downloads.sourceforge.net/hunspell/hyphen-$PKG_VER.tar.gz"
build() {
./configure \
--prefix=/usr \
--disable-static \
--disable-dependency-tracking \
--enable-fast-install
make
}
package() {
make -j1 DESTDIR="$PKG_DEST" install
}
|