summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 35c2789300ebe392bd5629310581cdd893a7631a (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Maintainer: Mario Finelli <mario at finel dot li>
# Contributor: Aoibhinn di Tori <email@aoibh.in>
# Contributor: Artem Vorotnikov <artem@vorotnikov.me>

_gemname=haml
pkgname=ruby-$_gemname
pkgver=6.0.7
pkgrel=1
pkgdesc="a layer on top of HTML or XML"
arch=(x86_64)
url=https://haml.info
license=(MIT)
depends=(ruby ruby-temple ruby-tilt)
# checkdepends=(ruby-rails ruby-minitest ruby-nokogiri)
makedepends=(rubygems ruby-rdoc)
options=(!emptydirs)
source=(https://github.com/haml/haml/archive/v$pkgver/$_gemname-$pkgver.tar.gz)
sha256sums=('c2698a2261f5c58da15b7f5af1956b0cee8e8c609fb688d8dfba05aaf69585e2')

prepare() {
  cd ${_gemname}-$pkgver
  sed -i 's|git ls-files -z|find -print0|' ${_gemname}.gemspec
  sed -i 's|f.match(%r{\Atest/})|f.match(%r{\A./test/})|' ${_gemname}.gemspec

  sed -i '/rbench/d' ${_gemname}.gemspec
  sed -i '/simplecov/d' ${_gemname}.gemspec
  sed -i '/"m"/d' Gemfile
  sed -i '/pry/d' Gemfile
  sed -i '/simplecov/d' Gemfile
  sed -i '/ruby-prof/d' Gemfile

  sed -i '/simplecov/Id' test/test_helper.rb
}

build() {
  cd ${_gemname}-$pkgver
  gem build ${_gemname}.gemspec
}

# the tests work but it requires a full rails installation which is nearly
# impossible on the AUR where half the gems have a different maintainer and
# are in varying states of being up-to-date (about half of them still point
# to rails 5 versions)
# check() {
#   cd ${_gemname}-$pkgver
#   rake test
# }

package() {
  cd ${_gemname}-$pkgver
  local _gemdir="$(gem env gemdir)"

  gem install \
    --ignore-dependencies \
    --no-user-install \
    -i "$pkgdir/$_gemdir" \
    -n "$pkgdir/usr/bin" \
    $_gemname-$pkgver.gem

  rm -rf "$pkgdir/$_gemdir/cache"

  install -Dm0644 MIT-LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
  install -Dm0644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
  install -Dm0644 CHANGELOG.md "$pkgdir/usr/share/doc/$pkgname/CHANGELOG.md"
}

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