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

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
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 }