From b70981b68efcce5256eb11c6cd26ae123b10b6ea Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 24 Jul 2009 08:01:31 +0000 Subject: moved extra/* to main/ and fixed misc build issues --- main/ruby/APKBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 main/ruby/APKBUILD (limited to 'main/ruby/APKBUILD') diff --git a/main/ruby/APKBUILD b/main/ruby/APKBUILD new file mode 100644 index 000000000..ffeb78150 --- /dev/null +++ b/main/ruby/APKBUILD @@ -0,0 +1,44 @@ +# Contributor: Carlo Landmeter +# Maintainer: Carlo Landmeter +pkgname=ruby +pkgver=1.8.7_p174 +_pkgver=1.8.7-p174 +pkgrel=1 +pkgdesc="An object-oriented language for quick and easy programming" +url="http://www.ruby-lang.org/en/" +license="Ruby" +depends= +makedepends="zlib-dev openssl-dev libiconv-dev gdbm-dev db-dev readline-dev" +subpackages="$pkgname-doc $pkgname-dev" +source="ftp://ftp.ruby-lang.org/pub/ruby/1.8/${pkgname}-${_pkgver}.tar.bz2" +# +# maybe its a good idea to split dep libs to seperate pkg's. +# +build() { + cd "$srcdir/$pkgname-${_pkgver}" + + # -fomit-frame-pointer makes ruby segfault, see gentoo bug #150413 + # In many places aliasing rules are broken; play it safe + # as it's risky with newer compilers to leave it as it is. + export CFLAGS="$CFLAGS -fno-omit-frame-pointer -fno-strict-aliasing" + + # turn off distcc/ccache + # http://bugs.alpinelinux.org/issues/show/1 + export CC=cc + + ./configure --build=${CHOST:-i486-alpine-linux-uclibc} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --with-sitedir='/usr/local/lib/site_ruby' \ + --with-extra-site-search-path='/usr/lib/site_ruby/$(ruby_ver)/i686-linux' \ + --enable-shared + make || return 1 + make DESTDIR="$pkgdir" install + + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}"/COPYING || return 1 + +} + +md5sums="88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.bz2" -- cgit v1.2.3