From cf7bce77e9e115a58621b14af32c0744b8f27309 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Tue, 3 Dec 2019 15:02:12 +0100 Subject: [PATCH] aspell: update to 0.60.8 - be0ify - enable single language selection - add de, de-alt & en language packs --- aspell-0.60.6.1-0.bee | 34 ------------------------------- aspell.be0 | 47 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 34 deletions(-) delete mode 100755 aspell-0.60.6.1-0.bee create mode 100755 aspell.be0 diff --git a/aspell-0.60.6.1-0.bee b/aspell-0.60.6.1-0.bee deleted file mode 100755 index cd8c0405a..000000000 --- a/aspell-0.60.6.1-0.bee +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/env beesh - -SRCURL[0]="http://ftp.gnu.org/gnu/aspell/aspell-${PKGVERSION}.tar.gz" - -PATCHURL[0]="" - -PGRP=( uncategorized ) - -B=${S} - -# BEE_CONFIGURE=compat - -# EXCLUDE="" - -mee_patch() { - bee_patch -} - -mee_configure() { - bee_configure -} - -mee_build() { - bee_build -} - -mee_install() { - bee_install - - mkdir -pv ${D}${BINDIR} - - install -v -m 755 scripts/{spell,ispell} ${D}${BINDIR} -} - diff --git a/aspell.be0 b/aspell.be0 new file mode 100755 index 000000000..36d6a3042 --- /dev/null +++ b/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 +}