Initial commit

This commit is contained in:
Mikaela Suomalainen 2016-02-09 13:44:17 +02:00
commit 084b82ccd8
2 changed files with 39 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
# Generated by mksrcinfo v8
# Tue Feb 9 11:43:08 UTC 2016
pkgbase = aspell-fi
pkgdesc = Finnish dictionary for aspell
pkgver = 0.7
pkgrel = 2
url = http://aspell.net
arch = any
license = GPL2
depends = aspell
source = ftp://ftp.gnu.org/gnu/aspell/dict/fi/aspell6-fi-0.7-0.tar.bz2
md5sums = 6d1032116982c0efab1af8fce83259c0
pkgname = aspell-fi

24
PKGBUILD Normal file
View file

@ -0,0 +1,24 @@
#Maintainer: Mikaela Suomalainen <mikaela@mikaela.info>
#Contributor: Simo Leone <neotuli@gmail.com>
pkgname=aspell-fi
pkgver=0.7
pkgrel=2
pkgdesc="Finnish dictionary for aspell"
arch=('any')
url="http://aspell.net"
license=('GPL2')
depends=('aspell')
source=(ftp://ftp.gnu.org/gnu/aspell/dict/fi/aspell6-fi-$pkgver-0.tar.bz2)
md5sums=('6d1032116982c0efab1af8fce83259c0')
build() {
cd "$srcdir/aspell6-fi-$pkgver-0"
./configure
make
}
package() {
cd "$srcdir/aspell6-fi-$pkgver-0"
make DESTDIR="$pkgdir" install
}