Date: Thursday, February 16, 2012 @ 10:06:32 Author: tdziedzic Revision: 150294
create a seperate pkgbuild for ruby-docs so we can make it an any pkg Added: ruby-docs/ ruby-docs/repos/ ruby-docs/trunk/ ruby-docs/trunk/PKGBUILD ----------+ PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) Added: ruby-docs/trunk/PKGBUILD =================================================================== --- ruby-docs/trunk/PKGBUILD (rev 0) +++ ruby-docs/trunk/PKGBUILD 2012-02-16 15:06:32 UTC (rev 150294) @@ -0,0 +1,44 @@ +# Maintainer: Thomas Dziedzic <[email protected]> +# Contributor: Allan McRae <[email protected]> +# Contributor: John Proctor <[email protected]> +# Contributor: Jeramy Rutley <[email protected]> + +pkgname=ruby-docs +pkgver=1.9.3_p125 +pkgrel=1 +pkgdesc='Documentation files for ruby' +arch=('any') +url='http://www.ruby-lang.org/en/' +license=('BSD' 'custom') +makedepends=('openssl' 'tk' 'libffi' 'doxygen' 'graphviz' 'libyaml') +options=('!emptydirs' '!makeflags') +source=("ftp://ftp.ruby-lang.org/pub/ruby/${pkgver%.*}/ruby-${pkgver//_/-}.tar.bz2") +md5sums=('341b8fc42aa18bd668314199f219db14') + +build() { + cd ruby-${pkgver//_/-} + + DOXYGEN=/usr/bin/doxygen PKG_CONFIG=/usr/bin/pkg-config ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --enable-shared \ + --enable-pthread \ + --disable-rpath + + make +} + +check() { + cd ruby-${pkgver//_/-} + + make test +} + +package() { + cd ruby-${pkgver//_/-} + + make DESTDIR="${pkgdir}" install-doc install-capi + + install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby-docs/LICENSE" + install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby-docs/BSDL" +}
