updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / ruby-xosd / PKGBUILD
blob99fd0130c588ab7bd7d80d9172809bdc68f31ca6
1 # Contributor: Moritz Heidkamp <moritz@invision-team.de>
2 pkgname=ruby-xosd
3 pkgver=1.1.0
4 pkgrel=1
5 pkgdesc="A simple binding to the xosd library for the Ruby programming language that allows displaying of arbitrary notifications in X11."
6 arch=(i686)
7 url="http://rubyforge.org/projects/ruby-xosd/"
8 license=('MIT')
9 depends=(ruby xosd)
10 makedepends=(ruby xosd)
11 source=(http://rubyforge.org/frs/download.php/17832/$pkgname-$pkgver.tar.bz2)
12 md5sums=('e59f3f945296a9fe126d838448e386d7')
14 build() {
15   cd "$startdir/src/$pkgname-$pkgver"
16   ruby extconf.rb
17   make || return 1
18   make DESTDIR="$startdir/pkg" install
21 # vim:set ts=2 sw=2 et: