summaryrefslogtreecommitdiff
path: root/~fauno/ruby-mustache/PKGBUILD
blob: 7b396434cd2e6a2d8d787909be82ec715157aace (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
# Maintainer: David Campbell <davekong@archlinux.us>
pkgname=ruby-mustache
pkgver=0.99.4
pkgrel=1
pkgdesc="A framework-agnostic way to render logic-free views."
arch=('any')
url="http://github.com/defunkt/mustache"
license=(MIT)
depends=('ruby')
makedepends=('rubygems')
source=("http://gems.rubyforge.org/gems/mustache-${pkgver}.gem")
noextract=("mustache-${pkgver}.gem")

build() {
  cd $srcdir
  local _gemdir="$(ruby -rubygems -e'puts Gem.default_dir')"
  gem install --ignore-dependencies -i "$pkgdir$_gemdir" mustache-$pkgver.gem \
  -n "$pkgdir/usr/bin"

  install -Dm644 $pkgdir/usr/lib/ruby/gems/1.9.1/gems/mustache-$pkgver/LICENSE \
                 $pkgdir/usr/share/licenses/$pkgname/LICENSE
  install -Dm644 $pkgdir/usr/lib/ruby/gems/1.9.1/gems/mustache-$pkgver/man/mustache.1 \
                 $pkgdir/usr/share/man/man1/mustache.1
  install -Dm644 $pkgdir/usr/lib/ruby/gems/1.9.1/gems/mustache-$pkgver/man/mustache.5 \
                 $pkgdir/usr/share/man/man5/mustache.5
}

# vim:set ts=2 sw=2 et:
md5sums=('650194ec2c166feb087377647414b9dc')