mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-21 22:44:59 +00:00
17 lines
481 B
Plaintext
Executable File
17 lines
481 B
Plaintext
Executable File
# description : Documentation tool for consistent and usable documentation in Ruby
|
|
# depends : ruby
|
|
|
|
_name=yard
|
|
name=ruby-$_name
|
|
version=0.9.20
|
|
release=1
|
|
options=(!emptydirs)
|
|
source=(https://rubygems.org/downloads/$_name-$version.gem)
|
|
md5sum=(cff24461a59d5ac123d65c332d3ba271)
|
|
|
|
build() {
|
|
local _gemdir="$(gem env gemdir)"
|
|
gem install --ignore-dependencies --no-user-install -i "$PKG/$_gemdir" -n "$PKG/usr/bin" $_name-$version.gem
|
|
rm "$PKG/$_gemdir/cache/$_name-$version.gem"
|
|
}
|