mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:47:16 +08:00
32 lines
629 B
Bash
32 lines
629 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
# contributor alund & Mikkel Hansen <acid@tuxin.dk>
|
|
|
|
pkgname=aspell-da
|
|
pkgver=1.7.42
|
|
pkgrel=1
|
|
pkgdesc="Danish dictionary for aspell"
|
|
depends=('aspell')
|
|
url="http://da.speling.org/"
|
|
source=("http://da.speling.org/filer/new_$pkgname-$pkgver.tar.gz")
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
md5sums=('a07960cfd7ff3abb1f209b6190b19f95')
|
|
|
|
|
|
build() {
|
|
cd ${srcdir}/new_$pkgname-$pkgver
|
|
|
|
./configure
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/new_$pkgname-$pkgver
|
|
|
|
mkdir -p ${pkgdir}/usr/lib/aspell
|
|
make DESTDIR=${pkgdir} install
|
|
}
|