updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / ruby-origami / PKGBUILD
blobccd59620413bf0854e65d0c247809a7fa796168f
1 # Maintainer: Emmanuel Gras <gras.emmanuel@gmail.com>
3 pkgname=ruby-origami
4 pkgver=1.1.0
5 pkgrel=1
6 pkgdesc="A Ruby framework designed to parse, analyze, and forge PDF documents"
7 arch=(any)
8 url="http://esec-lab.sogeti.com/dotclear/index.php?pages/Origami"
9 license=('LGPL')
10 depends=(ruby) # Full dependency information is available in the yaml specification
11 makedepends=(rubygems)
12 source=(http://gems.rubyforge.org/gems/origami-$pkgver.gem)
13 noextract=(origami-$pkgver.gem)
14 md5sums=('746273f9a4f3f6537e46a2cbeaa54c74')
16 package() {
17   cd $srcdir
18   # _gemdir is defined inside package() because if ruby[gems] is not installed on the system
19   # makepkg will exit with an error when sourcing the PKGBUILD
20   local _gemdir="$(ruby -rubygems -e'puts Gem.default_dir')"
22   gem install --ignore-dependencies -i "$pkgdir$_gemdir" origami-$pkgver.gem
25 # vim:set ts=2 sw=2 et: