upgpkg: wordpress 6.2.1-1
[ArchLinux/community.git] / aspell-nb / trunk / PKGBUILD
blob92518dfdb63be5c72dcc8716d14cf0a5371a7348
1 # Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>
3 pkgname=aspell-nb
4 pkgver=0.50.1
5 pkgrel=3
6 pkgdesc='Norwegian Bokmål dictionary for aspell'
7 arch=(any)
8 url='https://aspell.net/'
9 license=(GPL)
10 depends=(aspell)
11 makedepends=(convmv)
12 source=("ftp://ftp.gnu.org/gnu/aspell/dict/nb/$pkgname-$pkgver-0.tar.bz2")
13 sha256sums=('e7746e8b617b2df576c1172399544818084524504202b16c747f52db5e5d228a')
15 build() {
16   cd "$pkgname-$pkgver-0"
17   ./configure
18   make
21 package() {
22   make -C "$pkgname-$pkgver-0" DESTDIR="$pkgdir" install
23   convmv --notest -f iso-8859-1 -t UTF-8 \
24     "$pkgdir"/usr/lib/aspell-*/bokm*l.alias
27 # vim: ts=2 sw=2 et: