Skip to content
Snippets Groups Projects
Commit e60c516c authored by Andrea Scarpino's avatar Andrea Scarpino
Browse files

use package(); arch can be any

parent 33b86dd1
No related branches found
No related tags found
No related merge requests found
# Maintainer: Simo Leone <simo@archlinux.org>
# Maintainer:
# Contributor: Simo Leone <simo@archlinux.org>
# Contributor: Tobias Kieslich <tobias@justdreams.de>
pkgname=aspell-de
pkgver=20030222
pkgrel=2
pkgrel=3
pkgdesc="German dictionary for aspell"
arch=('i686' 'x86_64')
arch=('any')
url="http://aspell.net/"
license=('GPL2')
depends=('aspell')
......@@ -14,7 +15,11 @@ md5sums=('5950c5c8a36fc93d4d7616591bace6a6')
build() {
cd $srcdir/aspell6-de-$pkgver-1
./configure || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
./configure
make
}
package() {
cd $srcdir/aspell6-de-$pkgver-1
make DESTDIR=$pkgdir install
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment