Advertisement
khampf

aspell-la-20020503-2/PKGBUILD

Apr 8th, 2015
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.58 KB | None | 0 0
  1. # Contributor: Joseph Nosie <bolts at archlinux dot us>
  2.  
  3. pkgname=aspell-la
  4. pkgver=20020503
  5. pkgrel=2
  6. pkgdesc="Latin dictionary for aspell"
  7. license=('LGPL')
  8. depends=('aspell')
  9. arch=('i686' 'x86_64')
  10. url=("http://aspell.net/")
  11. source=(http://ftp.gnu.org/gnu/aspell/dict/la/aspell6-la-${pkgver}-0.tar.bz2)
  12. md5sums=('d42c679b95ba9b094aaa65f118834bf6')
  13.  
  14. build() {
  15.   cd $startdir/src/aspell6-la-${pkgver}-0
  16.   ./configure
  17.   /usr/bin/make || return 1
  18. }
  19.  
  20. package() {
  21.   cd $startdir/src/aspell6-la-${pkgver}-0
  22.   /usr/bin/make DESTDIR="$pkgdir" install
  23. }
  24.  
  25. # vim: ts=2 sw=2 et ft=sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement