blob: 6de3283cc3f3973aa18be681b10a4f6558a4ec1f (
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
|
# $Id: PKGBUILD 86931 2013-03-24 23:46:23Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Brad Fanella <bradfanella@archlinux.us>
pkgname=ruby-cairo
pkgver=1.12.2
pkgrel=5
pkgdesc='Ruby bindings for cairo'
arch=('x86_64' 'i686')
# http://cairographics.org/releases/
url='http://cairographics.org/rcairo/'
license=('GPL')
depends=('ruby' 'cairo')
makedepends=('ruby-pkgconfig')
source=("http://cairographics.org/releases/rcairo-$pkgver.tar.gz")
sha256sums=('f071d6ccb12cb6dc1fc91eb086d6150ce779930fe5af38a6987e378c809362c5')
build() {
cd "$srcdir/rcairo-$pkgver"
ruby extconf.rb --vendor
make
}
package() {
cd "$srcdir/rcairo-$pkgver"
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et:
|