# SliTaz package receipt. PACKAGE="aspell-pl" VERSION="6.0_20230301-0" CATEGORY="system-tools" SHORT_DESC="Polish aspell dictionary." MAINTAINER="paul@slitaz.org" LICENSE="GPL LGPL CC-SA" WEB_SITE="http://aspell.net/" SOURCE="sjp-aspell6-pl" TARBALL="$SOURCE-$VERSION.tar.bz2" WGET_URL="https://web.archive.org/web/20230301175948/https://sjp.pl/sl/ort/$TARBALL" DEPENDS="aspell" BUILD_DEPENDS="aspell aspell-dev" # What is the latest version available today? current_version() { wget -O - https://sjp.pl/sl/ort/ 2>/dev/null | \ sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q" } # Rules to configure and make the package. compile_rules() { ./configure && make && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr cp -a $install/usr/lib $fs/usr }