PKGBUILDs/community/ruby-ncurses/PKGBUILD
2009-10-09 21:15:33 -05:00

21 lines
679 B
Bash

# $Id: PKGBUILD 2403 2009-09-17 19:54:33Z shusmann $
# Maintainer: Jeff Mickey <j@codemac.net>
# Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com>
pkgname=ruby-ncurses
pkgver=1.2.4
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=('8a3e0ed33ac245241b6afd911520c205')
build() {
cd $srcdir/ncurses-ruby-$pkgver
ruby extconf.rb
make
make DESTDIR=$pkgdir install
}