blob: d74c04f827cd8c5fe1ce41b3c51214b37dbcd363 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Maintainer: Zeal Wierslee <zeal@wierslee.me>
pkgname=sugarjar
pkgver=2.0.1
pkgrel=1
pkgdesc="A git/github helper inspired by arcanist (and others)"
arch=('x86_64')
url="https://github.com/jaymzh/sugarjar"
license=('Apache')
depends=('git' 'github-cli' 'libxcrypt-compat' 'ruby' 'rubygems' 'ruby-mixlib-log' 'ruby-mixlib-shellout' 'ruby-pastel' 'ruby-deep_merge' 'ruby-rspec')
source=("https://github.com/jaymzh/sugarjar/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=("7ae427d8dff1a293f063617365e76615ea7d238aaa7def260fd2b6f2cfa5e768")
package() {
local _gemdir="$(env -i ruby -e'puts Gem.default_dir')"
cd "$pkgname-$pkgver"
gem build \
--norc \
--output "${pkgname}-${pkgver}.gem" \
"${pkgname}.gemspec"
gem install \
--local \
--ignore-dependencies \
--no-user-install \
-i "${pkgdir}/${_gemdir}" \
-n "${pkgdir}/usr/bin" \
--bindir "$pkgdir/usr/bin" \
"${pkgname}-${pkgver}.gem"
mkdir -p -m755 "$pkgdir/etc/sugarjar"
install -Dm644 "examples/sample_config.yaml" "$pkgdir/etc/sugarjar/sample_config.yaml"
install -Dm644 "examples/sample_repoconfig.yaml" "$pkgdir/etc/sugarjar/sample_repoconfig.yaml"
# If you use RVM the shebang will use the `ruby_executable_hooks` from your RVM installation, not the system one.
# Since sugarjar is installed in the system ruby, we want it to use the correct install of ruby.
sed -i "s%/usr/bin/env ruby_executable_hooks%/usr/bin/ruby%" "$pkgdir/usr/bin/sj"
}
check() {
local _gemdir="$(env -i ruby -e'puts Gem.default_dir')"
cd "$pkgname-$pkgver"
rspec .
}
|