first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/aspell/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/aspell/changes.md Normal file
View File

@@ -0,0 +1,2 @@
# 0.60.8
First version

28
src/aspell/pkg.sh Normal file
View File

@@ -0,0 +1,28 @@
NAME="aspell"
DESC="Interactive spell checking program and the Aspell libraries"
VERSION="0.60.8"
FILES=("https://ftp.gnu.org/gnu/aspell/aspell-$VERSION.tar.gz")
HASHES=("012fa9209203ae4e5a61c2a668fd10e3")
DEPENDS=()
PACKAGE() {
tar xf $NAME-$VERSION.tar.gz
cd $NAME-$VERSION
./configure --prefix=/usr
make && make DESTDIR="$ROOTDIR" install
ln -svfn aspell-${VERSION%.*} "$ROOTDIR/usr/lib/aspell"
install -v -m755 -d "$ROOTDIR/usr/share/doc/aspell-$VERSION/aspell"{,-dev}.html
install -v -m644 manual/aspell.html/* \
"$ROOTDIR/usr/share/doc/aspell-$VERSION/aspell.html"
install -v -m644 manual/aspell-dev.html/* \
"$ROOTDIR/usr/share/doc/aspell-$VERSION/aspell-dev.html"
cd .. && rm -r $NAME-$VERSION
}
INSTALL(){
echo "!! Install dictionaries from https://ftp.gnu.org/gnu/aspell/dict in order to use aspell !!"
exit 0
}