mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
679 B
Bash
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
|
|
}
|
|
|