summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2a627a6811c49fa6f60d31090bf6aa6677f04ff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Maintainer: changwoo
# Contributor: OctopusET
pkgname=hunspell-ko
pkgver=0.7.1
pkgrel=1
pkgdesc="Korean dictionary for hunspell"
arch=('any')
url='http://code.google.com/p/spellcheck-ko'
license=('LGPL3')
license=('MPL')
license=('GPL')
license=('CC BY-SA 4.0')
depends=('hunspell>=1.3.1')
makedepends=(
  'python>=3.5'
)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/spellcheck-ko/hunspell-dict-ko/archive/${pkgver}.tar.gz")
sha1sums=('e93dd247b629acb3c33e062fa0153bb3188c9b86')

build() {
  cd "$srcdir/$pkgname-$pkgver"
  make VERSION=$pkgver DESTDIR="$pkgdir" PREFIX=/usr
}

package() {
  cd "$srcdir/$pkgname-$pkgver"
  make VERSION=$pkgver DESTDIR="$pkgdir" PREFIX=/usr
}