mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-12 14:13:36 +00:00
27 lines
894 B
Bash
27 lines
894 B
Bash
TERMUX_PKG_HOMEPAGE=https://snowballstem.org/
|
|
TERMUX_PKG_DESCRIPTION="Snowball compiler and stemming algorithms"
|
|
TERMUX_PKG_LICENSE="BSD 3-Clause"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=2.2.0
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://github.com/snowballstem/snowball/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=425cdb5fba13a01db59a1713780f0662e984204f402d3dae1525bda9e6d30f1a
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_UPDATE_TAG_TYPE="newest-tag"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 -t $TERMUX_PREFIX/bin stemwords
|
|
install -Dm600 -t $TERMUX_PREFIX/include include/libstemmer.h
|
|
install -Dm600 -t $TERMUX_PREFIX/lib libstemmer.a
|
|
|
|
local f
|
|
for f in libstemmer.so*; do
|
|
if test -L "${f}"; then
|
|
ln -sf "$(readlink "${f}")" $TERMUX_PREFIX/lib/"${f}"
|
|
else
|
|
install -Dm600 -t $TERMUX_PREFIX/lib "${f}"
|
|
fi
|
|
done
|
|
}
|