view gnu/aspell-ms/aspell-ms.sh @ 1114:6de02aa035d2

gnu: move GNU packages to this category
author David Demelier <markand@malikania.fr>
date Thu, 19 Sep 2019 15:09:24 +0200
parents text/aspell-ms/aspell-ms.sh@ddab65a5b3f5
children 297b5eef115e
line wrap: on
line source

#!/bin/busybox sh
#
# Copyright (c) 2019 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

PKGNAME=aspell-ms
PKGVERSION=0.50-0
PKGREVISION=1
PKGLICENSE="GFDLv12"
PKGSUMMARY="Malay dictionary for aspell"
PKGDOWNLOAD="ftp://ftp.gnu.org/gnu/aspell/dict/ms/aspell-ms-$PKGVERSION.tar.bz2"
PKGDEPENDS="aspell"

build()
{
	rm -rf aspell-ms-$PKGVERSION
	tar xvf aspell-ms-$PKGVERSION.tar.bz2
	cd aspell-ms-$PKGVERSION

	./configure
	make
	make install DESTDIR=$DESTDIR

	cd ..
	rm -rf aspell-ms-$PKGVERSION
}