mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 11:37:13 +08:00
29 lines
793 B
Bash
29 lines
793 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# from AUR package http://aur.archlinux.org/packages.php?ID=1644
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=aspell-nb
|
|
pkgver=0.50.1
|
|
pkgrel=2
|
|
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 $startdir/src/${pkgname}-${pkgver}-0
|
|
./configure
|
|
/usr/bin/make || return 1
|
|
/usr/bin/make DESTDIR=$startdir/pkg install
|
|
}
|