diff options
author | CoprDistGit <infra@openeuler.org> | 2023-06-29 09:05:00 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-06-29 09:05:00 +0000 |
commit | 01512192090af8694f4e0ab2be9e47447869627b (patch) | |
tree | d1da7cf432e17ec972a97cbefd7151708cca0219 /mono-find-provides | |
parent | a40f344f9466a0470cfc97424fd83b59bf88a02a (diff) |
automatic import of mono
Diffstat (limited to 'mono-find-provides')
-rw-r--r-- | mono-find-provides | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/mono-find-provides b/mono-find-provides new file mode 100644 index 0000000..554bffe --- /dev/null +++ b/mono-find-provides @@ -0,0 +1,42 @@ +#!/usr/bin/bash +# +# mono-find-provides +# +# Authors: +# Ben Maurer (bmaurer@ximian.com) +# +# (C) 2005 Novell (http://www.novell.com) +# +# Args: builddir buildroot libdir + +IFS=$'\n' +filelist=($(grep -Ev '/usr/doc/|/usr/share/doc/')) +monolist=($(printf "%s\n" "${filelist[@]}" | grep -E "\\.(exe|dll)\$")) + +# If monodis is in the package being installed, use that one +# This is to support building mono +build_bindir="$2/usr/bin" +build_libdir="$2$3" + +if [ -x $build_bindir/monodis ]; then + monodis="$build_bindir/monodis" + export LD_LIBRARY_PATH=$build_libdir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} +elif [ -x /usr/bin/monodis ]; then + monodis="/usr/bin/monodis" +else + exit 0; +fi + +export MONO_SHARED_DIR=$1 + +for i in "${monolist[@]}"; do + ($monodis --assembly $i | awk ' + BEGIN { LIBNAME=""; VERSION=""; } + /^Version:/ { VERSION=$2 } + /^Name:/ { LIBNAME=$2 } + END { + if (VERSION && LIBNAME) + print "mono(" LIBNAME ") = " VERSION + } + ') 2>/dev/null +done |