mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:27:13 +08:00
27 lines
608 B
Bash
27 lines
608 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Samir Benmendil <ram-z[at]chakra-project[dot]org>
|
|
|
|
pkgname=aspell-nb
|
|
pkgver=0.50.1
|
|
pkgrel=3
|
|
pkgdesc="Norwegian Bokmål dictionary for aspell"
|
|
url="http://aspell.net/"
|
|
license="GPL"
|
|
depends=('aspell')
|
|
arch=('i686' 'x86_64')
|
|
source=(ftp://ftp.gnu.org/gnu/aspell/dict/nb/${pkgname}-${pkgver}-0.tar.bz2)
|
|
md5sums=('d1173a5ce04f39e9c93183da691e7ce8')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}-0
|
|
./configure
|
|
/usr/bin/make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}-0
|
|
/usr/bin/make DESTDIR=${pkgdir} install
|
|
}
|