blob: 0b0ef4e3efd14301f65a0ad35203045481735f9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# $Id: PKGBUILD 102505 2013-12-12 14:34:05Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Brad Fanella <bradfanella@archlinux.us>
# Contributor: Jeremy <reebydobalina@yahoo.ca>
pkgname=ruby-cairo
pkgver=1.12.6
pkgrel=1
pkgdesc='Ruby bindings for cairo'
arch=('x86_64' 'i686' 'mips64el')
url='http://cairographics.org/rcairo/'
license=('GPL')
depends=('ruby' 'cairo')
makedepends=('ruby-pkgconfig')
source=("http://cairographics.org/releases/rcairo-$pkgver.tar.gz")
sha256sums=('e7ff8d49a730662b3f999187fde45ac0b8651996fe7f9a952496be8b6e45800e')
build() {
cd "$srcdir/rcairo-$pkgver"
ruby extconf.rb --vendor
make
}
package() {
cd "$srcdir/rcairo-$pkgver"
make DESTDIR="$pkgdir" install
install -Dm644 ext/cairo/cairo.so \
"$pkgdir/usr/lib/ruby/vendor_ruby/2.0.0/$CARCH-linux/cairo.so"
}
# vim:set ts=2 sw=2 et:
|