mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
33 lines
1,016 B
Bash
33 lines
1,016 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Roman Kyrylych <roman@archlinux.org>
|
|
# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com>
|
|
|
|
pkgname=aspell-uk
|
|
pkgver=1.5.0
|
|
_ftpver=1.4.0
|
|
pkgrel=1
|
|
pkgdesc="Ukrainian dictionary for aspell"
|
|
arch=('i686' 'x86_64')
|
|
url="http://ispell-uk.sourceforge.net/"
|
|
license=('GPL' 'LGPL' 'MPL')
|
|
depends=('aspell')
|
|
source=(ftp://ftp.gnu.org/gnu/aspell/dict/uk/aspell6-uk-${_ftpver}-0.tar.bz2
|
|
http://downloads.sourceforge.net/ispell-uk/spell-uk-$pkgver.tgz)
|
|
md5sums=('662f15381d11581758866fd7af43b4d7'
|
|
'88f9792dea740c27e6e745e6a2cf0e04')
|
|
|
|
build() {
|
|
# needed when using a source package from ispell-uk project
|
|
cd $startdir/src/spell-uk-$pkgver
|
|
make || return 1
|
|
|
|
cd $startdir/src/aspell6-uk-${_ftpver}-0
|
|
./configure
|
|
make || return 1
|
|
|
|
# needed when using a source package from ispell-uk project
|
|
mv $startdir/src/spell-uk-$pkgver/dist/aspell-uk-$pkgver/* \
|
|
$startdir/src/aspell6-uk-${_ftpver}-0
|
|
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|