summaryrefslogtreecommitdiff
path: root/pcr/ruby-mustache
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2015-04-29 01:39:06 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2015-04-29 01:39:06 -0500
commit0220842121c5fa8ffac398aa03ae2dd0600f3414 (patch)
treee60f7464d7b9b0d60acb4394648b8fc3b3a347a6 /pcr/ruby-mustache
parentdae971ac95e073d00717b164371b0f2658e43ec4 (diff)
Removing packages. This packages are in community repo
Diffstat (limited to 'pcr/ruby-mustache')
-rw-r--r--pcr/ruby-mustache/PKGBUILD31
1 files changed, 0 insertions, 31 deletions
diff --git a/pcr/ruby-mustache/PKGBUILD b/pcr/ruby-mustache/PKGBUILD
deleted file mode 100644
index 33ffedf73..000000000
--- a/pcr/ruby-mustache/PKGBUILD
+++ /dev/null
@@ -1,31 +0,0 @@
-# Maintainer (Arch): David Campbell <davekong@archlinux.us>
-pkgname=ruby-mustache
-pkgver=0.99.4
-pkgrel=3
-pkgdesc="A framework-agnostic way to render logic-free views."
-arch=('any')
-url="http://github.com/defunkt/mustache"
-license=(MIT)
-depends=('ruby>=2')
-makedepends=('rubygems')
-source=("http://gems.rubyforge.org/gems/mustache-${pkgver}.gem"
- "https://raw.github.com/defunkt/mustache/master/LICENSE")
-md5sums=('650194ec2c166feb087377647414b9dc'
- 'fbbd010314b3f1554733123ecde55a52')
-noextract=("mustache-${pkgver}.gem")
-
-build() {
- cd $srcdir
- local _gemdir="$(ruby -rubygems -e'puts Gem.default_dir')"
- gem install \
- --no-user-install \
- --ignore-dependencies \
- -i "$pkgdir$_gemdir" mustache-$pkgver.gem \
- -n "$pkgdir/usr/bin"
-
- install -Dm644 $srcdir/LICENSE \
- $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-}
-
-# vim:set ts=2 sw=2 et: