summaryrefslogtreecommitdiff
path: root/community/gtypist/PKGBUILD
blob: 025697fc8876521c36475995ce0274e4701d00e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# $Id: PKGBUILD 92635 2013-06-10 09:42:13Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Ben Mazer <blm@groknil.org>
# Contributor: Mike Douglas <code_monkey@gooeylinux.org>

pkgname=gtypist
pkgver=2.9.3
pkgrel=1
pkgdesc="universal typing tutor"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.gnu.org/software/gtypist/gtypist.html"
license=("GPL")
depends=('ncurses' 'perl')
makedepends=('emacs')
install=gtypist.install
source=(ftp://ftp.gnu.org/gnu/gtypist/$pkgname-$pkgver.tar.gz
	ncurses.patch)
md5sums=('e26c29be0adf345604a802be81712bee'
         'e37a2e8fe90c6c0c684c1a12d016ee03')

build() {
  cd $srcdir/$pkgname-$pkgver
  patch -p1 <$srcdir/ncurses.patch
  aclocal
  automake --add-missing
  autoreconf
  ./configure --prefix=/usr
  make
}

package() {
  cd $srcdir/$pkgname-$pkgver
  make prefix=$pkgdir/usr install
  rm -f $pkgdir/usr/share/info/dir
}