blob: ce61b438d3140c31191899230fe5c40c1032a660 (
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
34
35
36
37
38
39
40
|
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
_gemname=rails
pkgname=ruby-rails
pkgver=4.1.8
pkgrel=0
pkgdesc="Ruby full-stack web framework"
url="http://rubyonrails.org/"
arch="noarch"
license="MIT"
depends="ruby ruby-actionmailer ruby-actionpack ruby-actionview
ruby-activemodel ruby-activerecord ruby-activesupport ruby-bundler
ruby-railties ruby-sprockets-rails"
depends_dev=
makedepends="$depends_dev ruby"
install=""
subpackages=""
source="http://gems.rubyforge.org/gems/$_gemname-$pkgver.gem"
_builddir="$srcdir"/$_realname-$pkgver
build() {
return 0
}
package() {
local _gemdir="$(ruby -rubygems -e'puts Gem.default_dir')"
local _geminstdir=$_gemdir/gems/$_gemname-$pkgver
mkdir -p "$pkgdir" || return 1
gem install --local --install-dir "$pkgdir"/$_gemdir \
--ignore-dependencies --verbose --no-rdoc --no-ri \
"$srcdir"/$_gemname-$pkgver.gem || return 1
rm -rf "$pkgdir"/$_gemdir/cache \
"$pkgdir"/$_geminstdir/ext \
"$pkgdir"/$_geminstdir/.require_paths
}
md5sums="6d6aadf030bc78540ab762784178efa0 rails-4.1.8.gem"
sha256sums="20f4a46c30dac40585721caf3b4b1c961a3cf425fd1ccbc6109ccd6df723599d rails-4.1.8.gem"
sha512sums="0817bcce4dc562547700027e3a98905362f770eecc8046b9aa4a0a24e710316a1fc89b55bb43cab8da31f1b183f39d0b5386b7607e0e8c671eeeecc3ce34052e rails-4.1.8.gem"
|