wok view actionpack/receipt @ rev 19595

Up: man-pages (4.09)
author Alexander Medvedev <devl547@gmail.com>
date Sun Jan 01 17:13:11 2017 +0000 (2017-01-01)
parents 436f29660d5c
children bdd5dd52ad52
line source
1 # SliTaz package receipt.
3 PACKAGE="actionpack"
4 VERSION="3.2.6"
5 CATEGORY="system-tools"
6 SHORT_DESC="Simple, battle-tested conventions for building and testing MVC web applications."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.gem"
10 WEB_SITE="http://rubygems.org/gems/actionpack"
11 WGET_URL="http://rubygems.org/downloads/$TARBALL"
12 COOK_OPT="!repack_src !unpack"
14 DEPENDS="ruby activesupport"
15 BUILD_DEPENDS="ruby-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 local _gemdir="$(ruby -rubygems -e'puts Gem.default_dir')"
21 gem install --ignore-dependencies -i "$DESTDIR/$_gemdir" $SOURCES_REPOSITORY/$TARBALL
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 cp -a $install/usr $fs
28 }