wok-next view ruby-gettext/receipt @ rev 21051

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 30 01:34:53 2018 +0200 (2018-11-30)
parents
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="ruby-gettext"
4 VERSION="3.2.9"
5 CATEGORY="ruby"
6 SHORT_DESC="GNU gettext-like program for Ruby"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://rubygems.org/gems/${PACKAGE#*-}"
10 HOST_ARCH="any"
11 REPOLOGY="${PACKAGE/-/:}"
13 TARBALL="${PACKAGE#*-}-$VERSION.gem"
14 WGET_URL="https://rubygems.org/downloads/$TARBALL"
16 BUILD_DEPENDS="ruby-dev"
18 COPY_std="@ruby"
19 DEPENDS_std="ruby-locale ruby-text"
21 compile_rules() {
22 gem install \
23 --no-document \
24 --ignore-dependencies \
25 --no-user-install \
26 --build-root $install \
27 $src/$TARBALL &&
28 fix gem
30 find $install -type f -perm 664 -exec chmod 644 '{}' \;
31 }