Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 47 lines (35 sloc) 932 Bytes
#!/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
}