mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:27:13 +08:00
27 lines
618 B
Bash
27 lines
618 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Samir Benmendil <ram-z[at]chakra-project[dot]org>
|
|
|
|
pkgname=aspell-nl
|
|
pkgver=0.50.2
|
|
pkgrel=2
|
|
pkgdesc="Dutch dictionary for aspell"
|
|
arch=('i686' 'x86_64')
|
|
url="http://aspell.net/"
|
|
license=('custom')
|
|
depends=('aspell')
|
|
source=(ftp://ftp.gnu.org/gnu/aspell/dict/nl/$pkgname-0.50-2.tar.bz2)
|
|
md5sums=('c3ef9fd7dc4c47d816eee9ef5149c76a')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-0.50-2
|
|
./configure
|
|
make
|
|
}
|
|
package() {
|
|
cd $srcdir/$pkgname-0.50-2
|
|
make DESTDIR=$pkgdir install
|
|
install -D -m644 Copyright $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
|
}
|