diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2017-06-21 23:12:48 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2017-06-21 23:12:48 +0300 |
commit | a0b016be2e2f120c5b2ef408289f10665c1deb56 (patch) | |
tree | a701c0edd10ebb6a025cb00d1a4b55ffcebd8637 /debian/sanity_check | |
download | ruby-debian.tar.gz |
Imported ruby2.3 2.3.3-1debian/2.3.3-1debian
Diffstat (limited to 'debian/sanity_check')
-rwxr-xr-x | debian/sanity_check | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/debian/sanity_check b/debian/sanity_check new file mode 100755 index 0000000..9a3bfa3 --- /dev/null +++ b/debian/sanity_check @@ -0,0 +1,17 @@ +#!/bin/sh + +set -eu + +# test multi-arch support +arch=$(dpkg-architecture -qDEB_HOST_MULTIARCH) +libdir=usr/lib +archlibdir=usr/lib/${arch} + +# files that should NOT exist +test '!' -f debian/tmp/${libdir}/libruby-${RUBY_VERSION}.so.${RUBY_VERSION} +test '!' -f debian/tmp/${libdir}/pkgconfig/ruby-${RUBY_VERSION}.pc + +# files that should exist +ls -1 debian/tmp/${archlibdir}/libruby-${RUBY_VERSION}.so.${RUBY_VERSION} +ls -1 debian/tmp/${archlibdir}/pkgconfig/ruby-${RUBY_VERSION}.pc +ls -1 debian/tmp/${libdir}/ruby/gems/${RUBY_API_VERSION}/specifications/default/json-*.gemspec |