Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.70.80.43
138 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
rpm /
[ HOME SHELL ]
Name
Size
Permission
Action
fileattrs
[ DIR ]
drwxr-xr-x
macros.d
[ DIR ]
drwxr-xr-x
platform
[ DIR ]
drwxr-xr-x
brp-compress
1.65
KB
-rwxr-xr-x
brp-elfperms
428
B
-rwxr-xr-x
brp-python-bytecompile
3.81
KB
-rwxr-xr-x
brp-python-hardlink
636
B
-rwxr-xr-x
brp-remove-la-files
190
B
-rwxr-xr-x
brp-strip
502
B
-rwxr-xr-x
brp-strip-comment-note
745
B
-rwxr-xr-x
brp-strip-static-archive
495
B
-rwxr-xr-x
check-buildroot
1.26
KB
-rwxr-xr-x
check-files
1.03
KB
-rwxr-xr-x
check-prereqs
418
B
-rwxr-xr-x
check-rpaths
1.06
KB
-rwxr-xr-x
check-rpaths-worker
5.14
KB
-rwxr-xr-x
elfdeps
22.3
KB
-rwxr-xr-x
find-lang.sh
8.84
KB
-rwxr-xr-x
find-provides
91
B
-rwxr-xr-x
find-requires
91
B
-rwxr-xr-x
fontconfig.prov
489
B
-rwxr-xr-x
macros
41.8
KB
-rw-r--r--
mkinstalldirs
3.46
KB
-rwxr-xr-x
ocamldeps.sh
6.68
KB
-rwxr-xr-x
perl.prov
6.28
KB
-rwxr-xr-x
perl.req
8.91
KB
-rwxr-xr-x
pkgconfigdeps.sh
1.34
KB
-rwxr-xr-x
pythondistdeps.py
27.53
KB
-rwxr-xr-x
rpm.daily
304
B
-rwxr-xr-x
rpm.supp
688
B
-rw-r--r--
rpm2cpio.sh
1.22
KB
-rwxr-xr-x
rpmdb_dump
37
B
-rwxr-xr-x
rpmdb_load
37
B
-rwxr-xr-x
rpmdeps
18.97
KB
-rwxr-xr-x
rpmpopt-4.17.0
11.78
KB
-rw-r--r--
rpmrc
17.24
KB
-rw-r--r--
script.req
322
B
-rwxr-xr-x
tgpg
933
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pkgconfigdeps.sh
#!/bin/bash pkgconfig=/usr/bin/pkg-config test -x $pkgconfig || { cat > /dev/null exit 0 } [ $# -ge 1 ] || { cat > /dev/null exit 0 } $pkgconfig --atleast-pkgconfig-version="0.24" || { cat > /dev/null exit 0 } # Under pkgconf, disables dependency resolver export PKG_CONFIG_MAXIMUM_TRAVERSE_DEPTH=1 case $1 in -P|--provides) while read filename ; do case "${filename}" in *.pc) # Query the dependencies of the package. DIR="`dirname ${filename}`" export PKG_CONFIG_PATH="$DIR:$DIR/../../share/pkgconfig" $pkgconfig --print-provides "$filename" 2> /dev/null | while read n r v ; do [ -n "$n" ] || continue # We have a dependency. Make a note that we need the pkgconfig # tool for this package. echo -n "pkgconfig($n) " [ -n "$r" ] && [ -n "$v" ] && echo -n "$r" "$v" echo done ;; esac done ;; -R|--requires) while read filename ; do case "${filename}" in *.pc) i="`expr $i + 1`" [ $i -eq 1 ] && echo "$pkgconfig" DIR="`dirname ${filename}`" export PKG_CONFIG_PATH="$DIR:$DIR/../../share/pkgconfig" $pkgconfig --print-requires --print-requires-private "$filename" 2> /dev/null | while read n r v ; do [ -n "$n" ] || continue echo -n "pkgconfig($n) " [ -n "$r" ] && [ -n "$v" ] && echo -n "$r" "$v" echo done esac done ;; esac exit 0
Close