summaryrefslogtreecommitdiff
path: root/community/gtypist/PKGBUILD
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/gtypist/PKGBUILD
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/gtypist/PKGBUILD')
-rw-r--r--community/gtypist/PKGBUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/community/gtypist/PKGBUILD b/community/gtypist/PKGBUILD
new file mode 100644
index 000000000..a4da3bd68
--- /dev/null
+++ b/community/gtypist/PKGBUILD
@@ -0,0 +1,24 @@
+# $Id: PKGBUILD 20472 2010-07-08 11:19:12Z 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.8.3
+pkgrel=3
+pkgdesc="universal typing tutor"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/gtypist/gtypist.html"
+license=("GPL")
+depends=('ncurses>=5.2' 'perl')
+install=gtypist.install
+source=(ftp://ftp.gnu.org/gnu/gtypist/$pkgname-$pkgver.tar.gz)
+md5sums=('ea3c7faa01d7052c156d50fa0e0506b8')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ ./configure --prefix=/usr
+ make || return 1
+ make prefix=$pkgdir/usr install || return 1
+ rm -f $pkgdir/usr/share/info/dir
+}