wok-next view ruby-json/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents efc1e4b02968
children e19ff076dc63
line source
1 # SliTaz package receipt v2.
3 PACKAGE="ruby-json" # ruby-stdlib already provides json
4 VERSION="2.1.0"
5 CATEGORY="ruby"
6 SHORT_DESC="JSON implementation as a Ruby extension in C"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="https://rubygems.org/gems/${PACKAGE#*-}"
10 REPOLOGY="${PACKAGE/-/:}"
12 TARBALL="${PACKAGE#*-}-$VERSION.gem"
13 WGET_URL="https://rubygems.org/downloads/$TARBALL"
15 BUILD_DEPENDS="ruby-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 gem install \
20 --no-document \
21 --ignore-dependencies \
22 --no-user-install \
23 --build-root $install \
24 $src/$TARBALL &&
25 fix gem &&
26 chmod -R g-w $install
27 }
29 genpkg_rules() {
30 case $PACKAGE in
31 *-dev)
32 copy @ruby-dev
33 ;;
34 *)
35 copy @ruby
36 DEPENDS="ruby"
37 ;;
38 esac
39 }