1
0
forked from ports/opt

hunspell: adopted port

This commit is contained in:
Tim Biermann 2021-01-29 13:03:25 +00:00
parent b16d338dc5
commit 4b0b56c294
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 12 additions and 12 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/UnaUzRkKBsU6tCQBZYsJNoIU/I3FbojVR8ZT4KOuh8IqleCCR+uss1VjK6Y9O9exOyiEHCzKdj9lXaQep+dmQk=
SHA256 (Pkgfile) = a571ccc71a90c72bdb403299cf2e312aff133e6db6e985efc37a4f90381c0142
RWSE3ohX2g5d/SXzZercGiDz9N6o+rD4r21Pobju2kqsL7gVlx8gfb2i4D8ilYyq0IbhE9iOQgpihE5bm+sfLHKCgCRQpmVrOwo=
SHA256 (Pkgfile) = 6916a05521c439f390b880008bf8360c96b948995e6eadb317af37351e427044
SHA256 (.footprint) = 4d6db6768d2772f9d00edc5315214f95c8a62091b891b56a383fa87d5a6b4900
SHA256 (hunspell-v1.7.0.tar.gz) = bb27b86eb910a8285407cf3ca33b62643a02798cf2eef468c0a74f6c3ee6bc8a

View File

@ -1,6 +1,6 @@
# Description: Advanced spell checker
# URL: http://hunspell.sourceforge.net/
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# URL: https://hunspell.github.io/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=hunspell
@ -9,16 +9,16 @@ release=2
source=(https://github.com/hunspell/$name/archive/v$version/$name-v$version.tar.gz)
build() {
cd $name-$version
cd $name-$version
autoreconf -if
autoreconf -if
./configure \
--prefix=/usr \
--disable-nls
./configure \
--prefix=/usr \
--disable-nls
make prefix=$PKG/usr install
make prefix=$PKG/usr install
ln -s libhunspell-1.7.so.0.0.1 $PKG/usr/lib/libhunspell.so
rm -rf $PKG/usr/share/man/hu
ln -s libhunspell-1.7.so.0.0.1 $PKG/usr/lib/libhunspell.so
rm -rf $PKG/usr/share/man/hu
}