aboutsummaryrefslogtreecommitdiffstats
path: root/community/ruby-i18n/APKBUILD
blob: 1a04f965e52a172611d0e09f5e70720d28095ce3 (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.5.2
pkgrel=1
pkgdesc="New wave Internationalization support for Ruby"
url="https://github.com/svenfuchs/i18n"
arch="noarch"
license="MIT"
depends="ruby ruby-concurrent-ruby ruby-json"
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 lib/i18n/tests/ *.md *LICENSE*
}

sha512sums="438145abed34b27af26dc513d0dc30e32412ace3a057cf14a8bc8cb64734ac531bb0a8b7512372faed995fff8bce7a8dd4e44ee29560704646ab35d46d58db3c  ruby-i18n-1.5.2.tar.gz"