# Description: String processing language for creating stemming algorithms # URL: https://snowballstem.org/ # Maintainer: Tim Biermann, tbier at posteo dot de # Depends on: name=snowball version=2.2.0 release=2 source=(https://github.com/snowballstem/snowball/archive/v$version/$name-$version.tar.gz dynamiclib.patch) build() { cd $name-$version patch -Np1 -i ../dynamiclib.patch make install -d $PKG/usr/{bin,lib} install -t $PKG/usr/bin snowball stemwords install -Dm644 {.,$PKG/usr}/include/libstemmer.h install libstemmer.a $PKG/usr/lib ln -s libstemmer.so.* $PKG/usr/lib/ ln -s libstemmer.so.0 $PKG/usr/lib/libstemmer.so }