wok view activesupport/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 63fa34c8d2fa
children
line source
1 # SliTaz package receipt.
3 PACKAGE="activesupport"
4 VERSION="6.1.4.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Database tables mapping to Ruby classes."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://rubygems.org/gems/activesupport"
11 TARBALL="$PACKAGE-$VERSION.gem"
12 WGET_URL="https://rubygems.org/downloads/$TARBALL"
14 DEPENDS="ruby"
15 BUILD_DEPENDS="ruby-dev"
17 COOK_OPT="!repack_src !unpack"
19 # What is the latest version available today?
20 current_version()
21 {
22 wget -O - $WEB_SITE 2>/dev/null | sed '/versions\//!d;s|.*versions/||;s|".*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 local _gemdir="$(ruby -rrubygems -e'puts Gem.default_dir')"
29 gem install \
30 --ignore-dependencies \
31 -i "$DESTDIR/$_gemdir" \
32 $SOURCES_REPOSITORY/$TARBALL
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cp -a $install/usr $fs
39 }