summaryrefslogtreecommitdiffstats
path: root/main/ruby-actionpack/APKBUILD
blob: 1dd66953dcdcbb8019db901dffcc4c656c6acecc (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
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer:
pkgname=ruby-actionpack
_realname=actionpack
pkgver=2.3.14
pkgrel=0
pkgdesc="Eases web-request routing, handling, and response as a half-way front, half-way page controller"
url="http://rubygems.org/gems/actionpack"
arch="all"
license="GPL"
depends="ruby"
depends_dev=
makedepends="$depends_dev rubygems"
install=""
subpackages=""
source=""

_builddir="$srcdir"/$_realname-$pkgver

build() {
        mkdir -p "$_builddir" || return 1
        local _gemdir="$(ruby -rubygems -e'puts Gem.default_dir')"
        gem install $_realname -v $pkgver -i "$_builddir"$_gemdir \
                --ignore-dependencies --verbose \
                --no-rdoc --no-ri || return 1
        rm -rf "$_builddir"$_gemdir/cache/
}

package() {
        mkdir -p "$pkgdir" || return 1
        cp -ra "$_builddir"/* "$pkgdir"/ || return 1
}