Continue with the upgrades...
[dragora.git] / recipes / ruby / pygments / recipe
bloba065fec5bc472ec0d9416b2d2a2f375eec6dee77
1 # Build recipe for pygments.
3 # Copyright (C) 2022 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 # Exit immediately on any error
18 set -e
20 program=pygments
21 version=2.3.0
22 pkgname=ruby-${program}
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=ruby
28 tarname=${program}.rb-${version}.gem
30 # Remote source(s)
31 fetch=https://rubygems.org/downloads/$tarname
33 description="
34 A Ruby wrapper for Pygments syntax highlighter.
36 pygments.rb is a Ruby wrapper for Pygments syntax highlighter.
39 homepage=https://github.com/pygments/pygments.rb
40 license=MIT
42 build()
44     # Figure out directory for Ruby Gems
45     _gemdir="$(ruby -W0 -e 'puts Gem.default_dir')"
47     if test -z "_$gemdir"
48     then
49         echo "recipe: Error: the _gemdir variable is empty." 1>&2
50         exit 1
51     fi
53     mkdir -p "${destdir}/${_gemdir}" "${destdir}/usr/bin"
55     gem install \
56      --ignore-dependencies \
57      --no-user-install \
58      --backtrace --verbose \
59      --install-dir "${destdir}/${_gemdir}" \
60      --bindir "${destdir}/usr/bin" \
61      "${tardir}/$tarname"