mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 22:57:16 +08:00
25 lines
612 B
Bash
25 lines
612 B
Bash
|
# Maintainer: SpepS <dreamspepser at yahoo dot it>
|
||
|
|
||
|
pkgname=(hunspell-it)
|
||
|
pkgver=2.4
|
||
|
pkgrel=2
|
||
|
pkgdesc="An italian dictionary for Hunspell"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://linguistico.sourceforge.net/pages/dizionario_italiano.html"
|
||
|
license=('GPL')
|
||
|
depends=("hunspell")
|
||
|
source=(http://prdownloads.sf.net/linguistico/italiano_2_4_2007_09_01.zip?download)
|
||
|
md5sums=('e7fbd9e2dfb25ea3288cdb918e1e1260')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir
|
||
|
|
||
|
mkdir -p $pkgdir/usr/share/myspell || return 1
|
||
|
|
||
|
# Fix dic file empty lines
|
||
|
sed '/^\/$/d' -i it_IT.dic || return 1
|
||
|
|
||
|
install -Dm644 it_IT.* $pkgdir/usr/share/myspell || return 1
|
||
|
}
|
||
|
|