mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
16 lines
493 B
Bash
16 lines
493 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
pkgname=ruby-mpd
|
|
pkgver=0.2.3
|
|
pkgrel=1
|
|
pkgdesc="Interface to MPD (Music Player Daemon) server."
|
|
arch=('i686' 'x86_64')
|
|
url="http://raa.ruby-lang.org/project/mpd-rb/"
|
|
license=('GPL')
|
|
depends=('ruby')
|
|
source=(http://rubyforge.org/frs/download.php/8040/mpd-rb-$pkgver.tar.gz)
|
|
md5sums=('2312aa2e1c28f15ce3f3270486be8a88')
|
|
|
|
build() {
|
|
cd $startdir/src/mpd-rb-$pkgver/lib
|
|
install -D -m 644 mpd.rb $startdir/pkg/usr/lib/ruby/site_ruby/1.8/mpd.rb
|
|
}
|