summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6454e6db434f74d4a6ca941188ce7bdf84ad0013 (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
# Maintainer: mutantmonkey <aur@mutantmonkey.in>
# Generated by gem2arch (https://github.com/anatol/gem2arch)
# Contributor: Artem Vorotnikov <artem@vorotnikov.me>

_gemname=slop
pkgname=ruby-$_gemname
pkgver=4.2.0
pkgrel=1
pkgdesc='Simple Lightweight Option Parsing'
arch=(any)
url='https://github.com/leejarvis/slop'
license=(MIT)
depends=(ruby)
options=(!emptydirs)
source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
noextract=($_gemname-$pkgver.gem)
sha256sums=('6cadcc224a8ad249755904ec6e591e867dcd2a695f50a4571bb5744e29bf24cc')

package() {
  local _gemdir="$(ruby -e'puts Gem.default_dir')"
  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n "$pkgdir/usr/bin" $_gemname-$pkgver.gem
  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

# vim:set ts=2 sw=2 et: