blob: 38fd3713bc1a729d8546ad922e2ddf7ce744e89b (
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
|
#!/bin/sh
NAME="ruby-mustache"
_gemname=mustache
DESC="Logic-less Ruby templates"
MAKEDEPS="ruby"
PKG_VER=1.1.1
SOURCE="https://github.com/mustache/mustache/archive/v$PKG_VER.tar.gz"
ADDITIONAL="
fix-test-race-condition.patch
skip-simplecov.patch
"
prepare () {
apply_patches
}
build() {
gem build $_gemname.gemspec
}
package() {
local gemdir="$PKG_DEST/$(ruby -e 'puts Gem.default_dir')"
local geminstdir="$gemdir/gems/$_gemname-$PKG_VER"
gem install --local \
--install-dir "$gemdir" \
--ignore-dependencies \
--no-document \
--verbose \
$_gemname
# Remove unnecessary files and rubbish...
cd "$gemdir"
rm -r cache build_info doc
cd "$geminstdir"
rm -r test man Rakefile *.md
}
|