diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2019-10-17 13:01:24 +0200 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-10-24 18:56:33 +0000 |
commit | f7ee8afe0a5d387e96091ca848cba2a6d8328434 (patch) | |
tree | ac16a17ce1c613f6e4db705624ba2d1db059dc17 /community/ruby-rmagick | |
parent | 1669a878070c09762aee0b1168cd9439a7ed865d (diff) | |
download | aports-f7ee8afe0a5d387e96091ca848cba2a6d8328434.tar.bz2 aports-f7ee8afe0a5d387e96091ca848cba2a6d8328434.tar.xz |
community/ruby-rmagick: disable on s390x due to librsvg (dep of imagemagick6)
Closes !509
Diffstat (limited to 'community/ruby-rmagick')
-rw-r--r-- | community/ruby-rmagick/APKBUILD | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/community/ruby-rmagick/APKBUILD b/community/ruby-rmagick/APKBUILD index de7584ebc2..d902ab7aaa 100644 --- a/community/ruby-rmagick/APKBUILD +++ b/community/ruby-rmagick/APKBUILD @@ -7,7 +7,7 @@ _pkgver=${pkgver//./-} pkgrel=1 pkgdesc="Ruby bindings for ImageMagick" url="https://rmagick.github.io/" -arch="all" +arch="all !s390x" license="MIT" depends="ghostscript-fonts" checkdepends="ruby-rake ruby-rspec" @@ -18,8 +18,6 @@ source="https://github.com/rmagick/rmagick/archive/RMagick_$_pkgver.tar.gz builddir="$srcdir/rmagick-RMagick_$_pkgver" build() { - cd "$builddir" - gem build $_gemname.gemspec gem install --local \ --install-dir dist \ @@ -30,8 +28,6 @@ build() { } check() { - cd "$builddir" - GEM_PATH='dist:.gem' rspec } |