mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 22:07:14 +08:00
24 lines
679 B
Bash
24 lines
679 B
Bash
# Maintainer: Pierre Buard <pierre.buard gmail com>
|
|
# Contributor: Alexander Fehr <pizzapunk gmail com>
|
|
|
|
pkgname=hunspell-fr
|
|
pkgver=3.7
|
|
pkgrel=1
|
|
pkgdesc="A french dictionary for Hunspell"
|
|
arch=('any')
|
|
url="http://www.dicollecte.org/"
|
|
license=('GPL' 'LGPL' 'MPL')
|
|
depends=('hunspell')
|
|
conflicts=('firefox-spell-fr_fr')
|
|
source=(http://www.dicollecte.org/download/fr/hunspell-fr-classique-reforme1990-v3.7.zip)
|
|
md5sums=(1cffa2e282f5e4cc4d19453d37550916)
|
|
|
|
build() {
|
|
/bin/true
|
|
}
|
|
|
|
package() {
|
|
install -Dm644 ${srcdir}/fr-classique,reforme1990.dic ${pkgdir}/usr/share/myspell/fr_FR.dic
|
|
install -Dm644 ${srcdir}/fr-classique,reforme1990.aff ${pkgdir}/usr/share/myspell/fr_FR.aff
|
|
}
|