# $Id: PKGBUILD 2365 2009-09-16 18:43:17Z shusmann $ # Contributor: Jeff Mickey # Contributor: Alessio 'mOLOk' Bolognino # Maintainer: Brad Fanella pkgname=ruby-ncurses pkgver=1.3.1 pkgrel=1 pkgdesc="This ruby extension makes most functions, constants, and external variables of the C library ncurses accessible from the Ruby programming language." arch=('i686' 'x86_64') url="http://ncurses-ruby.berlios.de" license=('GPL') depends=('ruby') source=(http://download.berlios.de/ncurses-ruby/ncurses-ruby-$pkgver.tar.bz2) md5sums=('63fd3d09a51cdd745e1ed37f85621ea2') build() { cd $srcdir/ncurses-ruby-$pkgver ruby extconf.rb make } package() { cd $srcdir/ncurses-ruby-$pkgver make DESTDIR=$pkgdir install }