contrib/snowball/Pkgfile

25 lines
652 B
Plaintext
Raw Normal View History

2019-06-11 23:45:49 +02:00
# Description: String processing language for creating stemming algorithms
2020-06-19 19:02:29 +02:00
# URL: https://snowballstem.org/
2019-06-11 23:45:49 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
2019-06-11 23:45:49 +02:00
name=snowball
2021-11-11 11:51:43 +01:00
version=2.2.0
2021-11-11 18:07:16 +01:00
release=2
source=(https://github.com/snowballstem/snowball/archive/v$version/$name-$version.tar.gz
dynamiclib.patch)
2019-06-11 23:45:49 +02:00
build() {
2021-11-11 18:07:16 +01:00
cd $name-$version
patch -Np1 -i ../dynamiclib.patch
2019-06-11 23:45:49 +02:00
2021-11-11 18:07:16 +01:00
make
2019-06-11 23:45:49 +02:00
2021-11-11 18:07:16 +01:00
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
2019-06-11 23:45:49 +02:00
}