blob: 79e6de008fa933287616cb7837c87d42e797b547 (
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
|
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=ruby-i18n
_gemname=${pkgname#ruby-}
pkgver=1.1.0
pkgrel=0
pkgdesc="New wave Internationalization support for Ruby"
url="https://github.com/svenfuchs/i18n"
arch="noarch"
license="MIT"
depends="ruby ruby-concurrent-ruby"
options="!check" # tests require additional deps that we don't have yet
source="$pkgname-$pkgver.tar.gz::https://github.com/svenfuchs/$_gemname/archive/v$pkgver.tar.gz"
builddir="$srcdir/$_gemname-$pkgver"
build() {
cd "$builddir"
gem build $_gemname.gemspec
}
package() {
local gemdir="$pkgdir/$(ruby -e 'puts Gem.default_dir')"
cd "$builddir"
gem install --local \
--install-dir "$gemdir" \
--ignore-dependencies \
--no-document \
--verbose \
$_gemname
# Remove unnecessary files.
cd "$gemdir"
rm -r cache/ build_info/ doc/
cd gems/$_gemname-$pkgver
rm -r gemfiles/ test/ *.md *LICENSE*
}
sha512sums="528e3c32d68aefe1ac4b0470249af2aec9a16b76f57f703182b6540d8e18625bf7e50aeda7782b6c64853f1be5561fe49fcb4d641d388371f8066b92d5a27161 ruby-i18n-1.1.0.tar.gz"
|