summaryrefslogtreecommitdiff
path: root/hunspell/Pkgfile
blob: 1acbfddb959c06e41e480027e881afc18cdda196 (plain)
    1 # Description:	Advanced spell checker
    2 # URL: https://hunspell.github.io/
    3 # Maintainer: Tim Biermann, tbier at posteo dot de
    4 
    5 name=hunspell
    6 version=1.7.2
    7 release=1
    8 source=(https://github.com/hunspell/$name/archive/v$version/$name-v$version.tar.gz)
    9 
   10 build() {
   11   cd $name-$version
   12 
   13   autoreconf -if
   14 
   15   ./configure \
   16     --prefix=/usr \
   17     --disable-nls
   18 
   19   make prefix=$PKG/usr install
   20 
   21   ln -s libhunspell-1.7.so.0.0.1 $PKG/usr/lib/libhunspell.so
   22   rm -rf $PKG/usr/share/man/hu
   23 }

Generated by cgit