index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | community/ruby/PKGBUILD | 11 |
diff --git a/community/ruby/PKGBUILD b/community/ruby/PKGBUILD index 530cd9f4..9a42864d 100644 --- a/community/ruby/PKGBUILD +++ b/community/ruby/PKGBUILD @@ -20,3 +20,14 @@ fi if [ "${CARCH}" = "i486" ]; then unset check fi + +# temporarily remove ruby-rdoc (because of clashes with rubygems +# (why rubygems should have /usr/bin/rdoc and /usr/bin/ri in it +# is a miracle to me though?!) +eval "$( + declare -f package_ruby-stdlib | \ + sed ' + /depends/ a \ + depends=(${depends[@]//ruby-rdoc/}) + ' +)" |