opt/hyphen/Pkgfile

33 lines
860 B
Plaintext
Raw Normal View History

2023-08-27 17:40:28 +02:00
# Description: Library for high quality hyphenation and justification
2018-04-02 08:32:21 +02:00
# URL: https://sourceforge.net/projects/hunspell/files/Hyphen/
2023-08-27 17:40:28 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
2018-04-02 08:32:21 +02:00
name=hyphen
version=2.8.8
release=1
source=(https://downloads.sourceforge.net/hunspell/$name-$version.tar.gz)
build() {
2023-08-27 17:40:28 +02:00
cd $name-$version
2018-04-02 08:32:21 +02:00
2023-08-27 17:40:28 +02:00
./configure --prefix=/usr
2018-04-02 08:32:21 +02:00
2023-08-27 17:40:28 +02:00
make
make DESTDIR=$PKG install
2018-04-02 08:32:21 +02:00
2023-08-27 17:40:28 +02:00
pushd $PKG/usr/share/hyphen/
en_US_aliases="en_AG en_AU en_BS en_BW en_BZ en_CA en_DK en_GB en_GH en_HK en_IE en_IN en_JM en_NA en_NZ en_PH en_SG en_TT en_ZA en_ZW"
for lang in $en_US_aliases; do
ln -s hyph_en_US.dic hyph_$lang.dic
done
popd
2018-04-02 08:32:21 +02:00
2023-08-27 17:40:28 +02:00
# the symlinks
install -d -m 0755 $PKG/usr/share/myspell/dicts
pushd $PKG/usr/share/myspell/dicts
for file in $PKG/usr/share/hyphen/*; do
ln -sv /usr/share/hyphen/$(basename $file) .
done
popd
2018-04-02 08:32:21 +02:00
}