mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 12:01:41 +02:00
testing/ruby-test-unit: new aport
This commit is contained in:
parent
8bb6e53ad7
commit
8c8dee7a39
35
testing/ruby-test-unit/APKBUILD
Normal file
35
testing/ruby-test-unit/APKBUILD
Normal file
@ -0,0 +1,35 @@
|
||||
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
||||
_gemname=test-unit
|
||||
pkgname=ruby-test-unit
|
||||
pkgver=2.5.2
|
||||
pkgrel=0
|
||||
pkgdesc="A xUnit family unit testing framework for Ruby"
|
||||
url="http://test-unit.rubyforge.org"
|
||||
arch="noarch"
|
||||
license="MIT"
|
||||
depends="ruby"
|
||||
depends_dev=
|
||||
makedepends="$depends_dev ruby-gems"
|
||||
install=""
|
||||
subpackages=""
|
||||
source="http://gems.rubyforge.org/gems/$_gemname-$pkgver.gem"
|
||||
|
||||
_builddir="$srcdir"/$_realname-$pkgver
|
||||
build() {
|
||||
return 0
|
||||
}
|
||||
|
||||
package() {
|
||||
local _gemdir="$(ruby -rubygems -e'puts Gem.default_dir')"
|
||||
local _geminstdir=$_gemdir/gems/$_gemname-$pkgver
|
||||
mkdir -p "$pkgdir" || return 1
|
||||
|
||||
gem install --local --install-dir "$pkgdir"/$_gemdir \
|
||||
--ignore-dependencies --verbose --no-rdoc --no-ri \
|
||||
"$srcdir"/$_gemname-$pkgver.gem || return 1
|
||||
rm -rf "$pkgdir"/$_gemdir/cache \
|
||||
"$pkgdir"/$_geminstdir/ext \
|
||||
"$pkgdir"/$_geminstdir/.require_paths
|
||||
}
|
||||
|
||||
md5sums="29530fd1bb3d53bd6aa20b2c171f516d test-unit-2.5.2.gem"
|
||||
Loading…
x
Reference in New Issue
Block a user