Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
aspell: update to 0.60.8
- be0ify
- enable single language selection
- add de, de-alt & en language packs
  • Loading branch information
wwwutz committed Dec 3, 2019
1 parent b0feeb9 commit cf7bce7
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 34 deletions.
34 changes: 0 additions & 34 deletions aspell-0.60.6.1-0.bee

This file was deleted.

47 changes: 47 additions & 0 deletions aspell.be0
@@ -0,0 +1,47 @@
#!/usr/bin/env beesh

# BEE_VERSION aspell-0.60.8-0

# more info: https://foo.bar.com

SRCURL[0]="https://ftp.gnu.org/pub/gnu/aspell/aspell-${PKGVERSION}.tar.gz"

SRCURL+=("https://ftp.gnu.org/pub/gnu/aspell/dict/de/aspell6-de-20161207-7-0.tar.bz2")
SRCURL+=("https://ftp.gnu.org/pub/gnu/aspell/dict/de-alt/aspell6-de-alt-2.1-1.tar.bz2")
SRCURL+=("https://ftp.gnu.org/pub/gnu/aspell/dict/en/aspell6-en-2019.10.06-0.tar.bz2")

# build_in_sourcedir

# sourcesubdir_append src

#mee_extract() {
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

mee_configure() {
bee_configure \
--disable-nls
}

#mee_build() {
# bee_build
#}

#mee_install() {
# bee_install
#}

mee_install_post() {
for LNG in ${S}/aspell6-*; do
(
cd ${LNG}
./configure --vars DESTDIR=${D} ASPELL=${D}/usr/bin/aspell PREZIP=${D}/usr/bin/prezip-bin
make
make install
)
done
}

0 comments on commit cf7bce7

Please sign in to comment.