mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 00:27:38 +08:00
27 lines
716 B
Bash
27 lines
716 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer : Mateusz Krawczuk <willingmagic[at]gmail[dot]com>
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=ispell-pl
|
|
pkgver=20111104
|
|
pkgrel=1
|
|
pkgdesc="Polish dictionary for ispell"
|
|
url="http://www.sjp.pl/"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
depends=('ispell')
|
|
source=(http://sjp.pl/slownik/ort/sjp-${pkgname}-${pkgver}-src.tar.bz2)
|
|
md5sums=('c84ee2fac608331e686bff5042afcd4f')
|
|
|
|
build() {
|
|
cd ${srcdir}/sjp-${pkgname}-${pkgver}
|
|
./build polish.all
|
|
mkdir -p ${pkgdir}/usr/lib/ispell
|
|
install -Dm 644 polish.aff ${pkgdir}/usr/lib/ispell/
|
|
install -Dm 644 polish.hash ${pkgdir}/usr/lib/ispell/
|
|
}
|
|
|