__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/bin/sh
# -*- mode: shell-script; sh-shell: "/bin/sh" -*-
# Copyright (C) 2018, 2021 g10 Code GmbH
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This file is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# SPDX-License-Identifier: FSFULLR
#### start of functions for this script
#
# Bourne shell functions for config file in pkg-config style, so that
# we can share such a config file between pkg-config and script
#
#
# get_var: Get the variable value of NAME
#
# Variables are recorded in the shell variables named "VAR_<NAME>"
#
get_var () {
___name=$1
eval echo \$VAR_$___name
}
#
# get_attr: Get the attribute value of KEY
#
# Attributes are recorded in the shell variables named "ATTR_<KEY>"
#
get_attr () {
___name=$1
eval echo \$ATTR_$___name
}
# variant of get_attr for list (separated by ',')
get_attr_l () {
(IFS=', '; echo "$(get_attr $1)")
}
# Remove ${varname} part in the beginning of a string.
remove_var_expr () {
___varname=$1
shift
expr "$*" : "\${$___varname}\\(.*\\)"
}
# Given a string, substitute variables.
substitute_vars () {
__string="$1"
__varname=""
__result=""
while [ -n "$__string" ]; do
case "$__string" in
\$\$*)
__result="$__result\$"
__string="${__string#\$\$}"
;;
\${*}*)
__varname="${__string#\$\{}"
__varname="${__varname%%\}*}"
__result="$__result$(get_var $__varname)"
__string=$(remove_var_expr $__varname $__string)
;;
*)
__result="$__result$(printf %c "$__string")"
__string="${__string#$(printf %c "$__string")}"
;;
esac
done
echo "$__result"
}
#
# Read a config from stdin
#
# Variables:
# For VAR=VALUE, value is stored in the shell variable VAR_*.
#
# Attributes:
# For KEY: VALUE, value is stored in the shell variable ATTR_*.
#
read_config_from_stdin () {
_filename=$1
_line=""
_varname=""
_value=""
_key=""
_reading_attrs=""
while read _line; do
if [ -z "$_line" ]; then
_reading_attrs=yes
continue
elif [ -z "$_reading_attrs" ]; then
case "$_line" in
*=*)
_varname="${_line%%=*}"
_value="${_line#*=}"
VAR_list="$VAR_list${VAR_list:+ }VAR_$_varname"
read VAR_$_varname <<EOF1
$(substitute_vars "$_value")
EOF1
continue
;;
*) _reading_attrs=yes ;;
esac
fi
if [ -n "$_reading_attrs" ]; then
case "$_line" in
*:\ *)
_key="${_line%%:\ *}"
_value="${_line#*:\ }"
if expr "$_key" : ".*\..*" >/dev/null; then
_key="${_key%.*}_${_key#*.}"
fi
ATTR_list="$ATTR_list${ATTR_list:+ }ATTR_$_key"
read ATTR_$_key <<EOF2
$(substitute_vars "$_value")
EOF2
;;
*:|*:\ ) ;;
*)
echo "Error reading $_filename: $_line" 1>&2
exit 1
;;
esac
fi
done
}
find_file_in_path () {
_f=$1
_p=$2
_saved_IFS="$IFS"
_arg=""
IFS=":" # On Windows it should be ";"???
for _arg in $_p; do
if [ -r $_arg/$_f ]; then
RESULT="$_arg/$_f"
IFS="$_saved_IFS"
return 0
fi
done
IFS="$_saved_IFS"
RESULT=""
return 1
}
read_config_file () {
if ! find_file_in_path $1.pc $2; then
if [ -z "$want_exists" ]; then
echo "Can't find $1.pc" 1>&2
fi
exit 1
fi
read_config_from_stdin $RESULT < $RESULT
}
cleanup_vars_attrs () {
eval unset $VAR_list VAR_list
eval unset $ATTR_list ATTR_list
}
not_listed_yet () {
___m=$1
___arg=""
shift
for ___arg; do
if [ $___m = $___arg ]; then
return 1
fi
done
return 0
}
list_only_once () {
__result=""
__arg=""
for __arg; do
if not_listed_yet $__arg $__result; then
__result="$__result${__result:+ }$__arg"
fi
done
echo $__result
}
list_only_once_for_libs () {
__result=""
__rev_list=""
__arg=""
# Scan the list and eliminate duplicates for non-"-lxxx"
# the resulted list is in reverse order
for __arg; do
case "$__arg" in
-l*)
# As-is
__rev_list="$__arg${__rev_list:+ }$__rev_list"
;;
*)
if not_listed_yet $__arg $__rev_list; then
__rev_list="$__arg${__rev_list:+ }$__rev_list"
fi
;;
esac
done
# Scan again
for __arg in $__rev_list; do
case "$__arg" in
-l*)
if not_listed_yet $__arg $__result; then
__result="$__arg${__result:+ }$__result"
fi
;;
*)
# As-is
__result="$__arg${__result:+ }$__result"
;;
esac
done
echo $__result
}
arg1_is_same () {
[ "$1" = "=" -o "$1" = ">=" -o "$1" = "<=" ]
}
arg1_is_less () {
[ "$1" = "!=" -o "$1" = "<" -o "$1" = "<=" ]
}
arg1_is_great () {
[ "$1" = "!=" -o "$1" = ">" -o "$1" = ">=" ]
}
#
# Evaluate comparison between versions in RPM way
#
eval_compare_version () {
___str1="$1"
___cmp="$2"
___str2="$3"
___char1=""
___char2=""
___chunk1=""
___chunk2=""
while [ -n "$___str1" -a -n "$___str2" ]; do
# Trim anything that's not alnum or tilde from the front
___str1="$(expr "$___str1" : '[^0-9A-Za-z~]*\(.*\)')"
___str2="$(expr "$___str2" : '[^0-9A-Za-z~]*\(.*\)')"
# Get the first character
___char1=${___str1%${___str1#?}}
___char2=${___str2%${___str2#?}}
if [ "$___char1" = ~ -o "$___char2" = ~ ]; then
if [ "$___char1" != ~ ]; then
arg1_is_great $___cmp
return
fi
if [ "$___char2" != ~ ]; then
arg1_is_less $___cmp
return
fi
___str1=${___str1#~}
___str2=${___str2#~}
continue
fi
if [ -z "$___char1" -o -z "$___char2" ]; then
break
fi
case "$___char1$___char2" in
[0-9][A-Za-z])
arg1_is_great $___cmp
return
;;
[A-Za-z][0-9])
arg1_is_less $___cmp
return
;;
[0-9][0-9])
___chunk1="$(expr "$___str1" : '\([0-9]*\)')"
___chunk2="$(expr "$___str2" : '\([0-9]*\)')"
;;
[A-Za-z][A-Za-z])
___chunk1="$(expr "$___str1" : '\([A-Za-z]*\)')"
___chunk2="$(expr "$___str2" : '\([A-Za-z]*\)')"
;;
esac
# Compare chunks numerically if digits, or lexicographically
if expr "$___chunk1" "!=" "$___chunk2" >/dev/null; then
if expr "$___chunk1" ">" "$___chunk2" >/dev/null; then
arg1_is_great $___cmp
return
else
arg1_is_less $___cmp
return
fi
fi
# Remove the chunk
___str1="${___str1#$___chunk1}"
___str2="${___str2#$___chunk2}"
done
# Either STR1, STR2 or both is empty here
if [ -n "$___str1" ]; then
case "$___str1" in
~*) arg1_is_less $___cmp ;;
*) arg1_is_great $___cmp ;;
esac
elif [ -n "$___str2" ]; then
case "$___str2" in
~*) arg1_is_great $___cmp ;;
*) arg1_is_less $___cmp ;;
esac
else
arg1_is_same $___cmp
fi
}
#
# Recursively solve package dependencies
#
# Result is in the PKG_LIST variable
#
all_required_config_files () {
all_list=""
new_list=""
p=""
pkg=""
cmp=""
list=$*
while [ -n "$list" ]; do
for p in $list; do
if [ -z "$pkg" ]; then
pkg=$p
elif [ -z "$cmp" ]; then
case "$p" in
"="|"!="|"<"|">"|"<="|">=") cmp=$p ;;
*)
read_config_file $pkg $PKG_CONFIG_PATH
all_list="$all_list${all_list:+ }$pkg"
new_list="$new_list${new_list:+ }$(get_attr_l Requires)"
if [ -n "$enable_static" ]; then
new_list="$new_list${new_list:+ }$(get_attr_l Requires_private)"
fi
cleanup_vars_attrs
pkg=$p
;;
esac
else
read_config_file $pkg $PKG_CONFIG_PATH
if ! eval_compare_version "$(get_attr Version)" $cmp $p; then
echo "Version mismatch for $pkg $cmp $p: $(get_attr Version)" 1>&2
exit 1
fi
all_list="$all_list${all_list:+ }$pkg"
new_list="$new_list${new_list:+ }$(get_attr_l Requires)"
if [ -n "$enable_static" ]; then
new_list="$new_list${new_list:+ }$(get_attr_l Requires_private)"
fi
cleanup_vars_attrs
pkg=""
cmp=""
fi
done
if [ -n "$cmp" ]; then
echo "No version after comparison operator ($cmp): $pkg" 1>&2
exit 1
elif [ -n "$pkg" ]; then
read_config_file $pkg $PKG_CONFIG_PATH
all_list="$all_list${all_list:+ }$pkg"
new_list="$new_list${new_list:+ }$(get_attr_l Requires)"
if [ -n "$enable_static" ]; then
new_list="$new_list${new_list:+ }$(get_attr_l Requires_private)"
fi
cleanup_vars_attrs
fi
list="$new_list"
new_list=""
done
PKG_LIST=$(list_only_once $all_list)
}
#
# Modify -I or -L by PKG_CONFIG_SYSROOT_DIR variable
#
sysroot () {
_opt="$1"
_result=""
shift
while [ $# -gt 0 ]; do
if [ $1 = $_opt ]; then
_result="$_result${_result:+ }$_opt"
shift
_result="$_result $PKG_CONFIG_SYSROOT_DIR$1"
elif expr "x$1" : "^x$_opt" >/dev/null; then
_result="$_result${_result:+ }$_opt$PKG_CONFIG_SYSROOT_DIR$(expr "x$1" : "^x$_opt\(.*\)")"
else
_result="$_result${_result:+ }$1"
fi
shift
done
echo "$_result"
}
# Show usage
usage () {
cat <<EOF
Usage: gpgrt-config [--libdir=LIBDIR] [OPTIONS] MODULES
Options:
[--exists]
[--modversion]
[--libs]
[--cflags]
[--static]
[--variable=VARNAME]
EOF
exit $1
}
#### end of functions for this script
myname=${0##*/}
if [ $myname = gpgrt-config ]; then
default_module="gpg-error"
else
default_module=${myname%-config}
fi
# First stage to process --libdir option
libdir=""
while test $# -gt 0; do
case $1 in
--libdir=*)
libdir=${1#--libdir=}
shift
;;
*)
break
;;
esac
done
if env | grep '^PKG_CONFIG_LIBDIR=$' >/dev/null 2>&1; then
# The variable set as empty, we use PKG_CONFIG_PATH in this case,
# ignoring --libdir option
if [ -z "$PKG_CONFIG_PATH" ]; then
echo "Please have valid PKG_CONFIG_PATH if PKG_CONFIG_LIBDIR is empty" 1>&2
exit 1
fi
else
if [ -n "$libdir" ]; then
# --libdir option is available, it overrides existing PKG_CONFIG_LIBDIR
PKG_CONFIG_LIBDIR=$libdir/pkgconfig
fi
if [ -z "$PKG_CONFIG_LIBDIR" ]; then
if [ -z "$PKG_CONFIG_PATH" ]; then
echo "Please use --libdir=LIBDIR option or set PKG_CONFIG_LIBDIR" 1>&2
echo "Or set PKG_CONFIG_PATH" 1>&2
exit 1
fi
else
# PKG_CONFIG_LIBDIR is available here
# Modify PKG_CONFIG_PATH, prepending PKG_CONFIG_LIBDIR
PKG_CONFIG_PATH="$PKG_CONFIG_LIBDIR${PKG_CONFIG_PATH:+:}$PKG_CONFIG_PATH"
fi
fi
# PKG_CONFIG_PATH is ready here
#
if test $# -eq 0; then
usage 1 1>&2
fi
# Second stage to do the main functionality
module_list=""
want_var=""
want_attr=""
want_cflags=""
want_libs=""
want_exists=""
enable_static=""
cflags=""
libs=""
mtcflags=""
mtlibs=""
output=""
mt="no"
VAR_list=VAR_pc_sysrootdir
if [ -z "$PKG_CONFIG_SYSROOT_DIR" ]; then
VAR_pc_sysrootdir="/"
else
VAR_pc_sysrootdir="$PKG_CONFIG_SYSROOT_DIR"
fi
while test $# -gt 0; do
case $1 in
#### pkg-config incompatible options: begin
--prefix)
# In future, use --variable=prefix instead.
want_var=prefix
;;
--exec-prefix)
# In future, use --variable=exec_prefix instead.
want_var=exec_prefix
;;
--version)
# In future, use --modversion instead.
want_attr=Version
;;
--api-version)
# In future, use --variable=api_version instead.
want_var=api_version
;;
--host)
# In future, use --variable=host instead.
want_var=host
;;
--mt)
# In future, use --variable=mtcflags or --variable=mtlibs.
mt=yes
;;
#### pkg-config incompatible options: end
--modversion)
want_attr=Version
;;
--exists)
want_exists=yes
;;
--cflags)
want_cflags=yes
;;
--libs)
want_libs=yes
;;
--static)
enable_static=yes
;;
--variable=*)
want_var=${1#*=}
;;
--help)
usage 0
;;
--*)
usage 1 1>&2
;;
*)
# Modules
module_list="$module_list${module_list:+ }$1"
;;
esac
shift
done
if [ -z "$module_list" ]; then
module_list=$default_module
elif expr "$module_list" : "=\|!=\|<\|>\|<=\|>=" >/dev/null; then
module_list="$default_module $module_list"
fi
all_required_config_files $module_list
for p in $PKG_LIST; do
read_config_file $p $PKG_CONFIG_PATH
# For want_var or want_attr, get it from the first package
if [ -n "$want_var" ]; then
output="$(get_var $want_var)"
break
elif [ -n "$want_attr" ]; then
output="$(get_attr $want_attr)"
break
else
cflags="$cflags${cflags:+ }$(get_attr Cflags)"
libs="$libs${libs:+ }$(get_attr Libs)"
if [ -n "$enable_static" ]; then
libs="$libs${libs:+ }$(get_attr Libs_private)"
fi
if [ $p = "gpg-error" ]; then
mtcflags="$(get_var mtcflags)"
mtlibs="$(get_var mtlibs)"
fi
fi
cleanup_vars_attrs
done
if [ -z "$want_var" -a -z "$want_attr" ]; then
if [ -n "$want_cflags" ]; then
output="$output${output:+ }$(sysroot -I $(list_only_once $cflags))"
# Backward compatibility to old gpg-error-config
if [ $mt = yes -a -n "$mtcflags" ]; then
output="$output${output:+ }$mtcflags"
fi
fi
if [ -n "$want_libs" ]; then
output="$output${output:+ }$(sysroot -L $(list_only_once_for_libs $libs))"
# Backward compatibility to old gpg-error-config
if [ $mt = yes -a -n "$mtlibs" ]; then
output="$output${output:+ }$mtlibs"
fi
fi
fi
if [ -z "$want_exists" ]; then
echo "$output"
fi
exit 0
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| X11 | Folder | 0755 |
|
|
| aclocal-1.16 | File | 35.18 KB | 0755 |
|
| File | 0 B | 0 |
|
|
| appstream-compose | File | 26.3 KB | 0755 |
|
| appstream-util | File | 98.3 KB | 0755 |
|
| appstreamcli | File | 118.23 KB | 0755 |
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| autoconf | File | 14.85 KB | 0755 |
|
| autoheader | File | 8.82 KB | 0755 |
|
| autom4te | File | 32.69 KB | 0755 |
|
| automake-1.16 | File | 255.91 KB | 0755 |
|
| autoreconf | File | 26.3 KB | 0755 |
|
| autoscan | File | 16.77 KB | 0755 |
|
| autoupdate | File | 33.22 KB | 0755 |
|
| broadwayd | File | 130.21 KB | 0755 |
|
| bwrap | File | 70.47 KB | 0755 |
|
| File | 0 B | 0 |
|
|
| c89-gcc | File | 428 B | 0755 |
|
| c99-gcc | File | 454 B | 0755 |
|
| cairo-trace | File | 2.95 KB | 0755 |
|
| canberra-gtk-play | File | 18.2 KB | 0755 |
|
| corelist | File | 15.01 KB | 0755 |
|
| cpan | File | 8.16 KB | 0755 |
|
| cpan5.34-x86_64-linux-gnu | File | 8.18 KB | 0755 |
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| curl-config | File | 6.52 KB | 0755 |
|
| dazzle-list-counters | File | 14.13 KB | 0755 |
|
| debconf | File | 2.79 KB | 0755 |
|
| debconf-apt-progress | File | 11.27 KB | 0755 |
|
| debconf-communicate | File | 608 B | 0755 |
|
| debconf-copydb | File | 1.68 KB | 0755 |
|
| debconf-escape | File | 647 B | 0755 |
|
| debconf-set-selections | File | 2.92 KB | 0755 |
|
| debconf-show | File | 1.78 KB | 0755 |
|
| derb | File | 26.88 KB | 0755 |
|
| desktop-file-edit | File | 96.44 KB | 0755 |
|
| desktop-file-install | File | 96.44 KB | 0755 |
|
| desktop-file-validate | File | 76.69 KB | 0755 |
|
| dh_autotools-dev_restoreconfig | File | 1.79 KB | 0755 |
|
| dh_autotools-dev_updateconfig | File | 1.81 KB | 0755 |
|
| dh_girepository | File | 12.88 KB | 0755 |
|
| dumpsexp | File | 18.3 KB | 0755 |
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| enc2xs | File | 40.84 KB | 0755 |
|
| encguess | File | 3.01 KB | 0755 |
|
| envsubst | File | 34.38 KB | 0755 |
|
| fc-cache | File | 22.23 KB | 0755 |
|
| fc-cat | File | 18.23 KB | 0755 |
|
| fc-conflist | File | 14.23 KB | 0755 |
|
| fc-list | File | 14.23 KB | 0755 |
|
| fc-match | File | 14.23 KB | 0755 |
|
| fc-pattern | File | 14.23 KB | 0755 |
|
| fc-query | File | 14.23 KB | 0755 |
|
| fc-scan | File | 14.23 KB | 0755 |
|
| fc-validate | File | 14.23 KB | 0755 |
|
| file | File | 26.56 KB | 0755 |
|
| fribidi | File | 26.99 KB | 0755 |
|
| gapplication | File | 22.21 KB | 0755 |
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| gdbus | File | 54.21 KB | 0755 |
|
| gdbus-codegen | File | 1.99 KB | 0755 |
|
| gdk-pixbuf-csource | File | 14.15 KB | 0755 |
|
| gdk-pixbuf-pixdata | File | 14.13 KB | 0755 |
|
| gdk-pixbuf-thumbnailer | File | 18.21 KB | 0755 |
|
| genbrk | File | 14.78 KB | 0755 |
|
| gencat | File | 26.37 KB | 0755 |
|
| gencfu | File | 14.73 KB | 0755 |
|
| gencnval | File | 26.61 KB | 0755 |
|
| gendict | File | 26.78 KB | 0755 |
|
| genrb | File | 147.91 KB | 0755 |
|
| getconf | File | 34.29 KB | 0755 |
|
| getent | File | 38.65 KB | 0755 |
|
| gettext | File | 34.38 KB | 0755 |
|
| gettext.sh | File | 5.07 KB | 0755 |
|
| gettextize | File | 41.28 KB | 0755 |
|
| gio | File | 102.23 KB | 0755 |
|
| gio-querymodules | File | 18.13 KB | 0755 |
|
| gjs | File | 26.71 KB | 0755 |
|
| gjs-console | File | 26.71 KB | 0755 |
|
| glib-compile-schemas | File | 218.79 KB | 0755 |
|
| File | 0 B | 0 |
|
|
| gobject-query | File | 14.14 KB | 0755 |
|
| File | 0 B | 0 |
|
|
| gpg-error-config | File | 2.04 KB | 0755 |
|
| gpgrt-config | File | 13.11 KB | 0755 |
|
| File | 0 B | 0 |
|
|
| gresource | File | 26.13 KB | 0755 |
|
| gsettings | File | 30.21 KB | 0755 |
|
| gsound-play | File | 18.21 KB | 0755 |
|
| gtk-encode-symbolic-svg | File | 22.24 KB | 0755 |
|
| gtk-launch | File | 18.29 KB | 0755 |
|
| gtk-query-settings | File | 14.13 KB | 0755 |
|
| gtk-update-icon-cache | File | 38.57 KB | 0755 |
|
| gtk4-broadwayd | File | 150.22 KB | 0755 |
|
| gtk4-encode-symbolic-svg | File | 8.58 MB | 0755 |
|
| gtk4-launch | File | 18.29 KB | 0755 |
|
| gtk4-query-settings | File | 14.13 KB | 0755 |
|
| gtk4-rendernode-tool | File | 30.13 KB | 0755 |
|
| hb-info | File | 54.21 KB | 0755 |
|
| hb-ot-shape-closure | File | 46.21 KB | 0755 |
|
| hb-shape | File | 50.21 KB | 0755 |
|
| hb-subset | File | 46.18 KB | 0755 |
|
| hb-view | File | 82.35 KB | 0755 |
|
| hmac256 | File | 18.7 KB | 0755 |
|
| iconv | File | 66.41 KB | 0755 |
|
| icuexportdata | File | 30.98 KB | 0755 |
|
| icuinfo | File | 14.62 KB | 0755 |
|
| ifnames | File | 4.08 KB | 0755 |
|
| instmodsh | File | 4.27 KB | 0755 |
|
| ispell-wrapper | File | 7.05 KB | 0755 |
|
| itstool | File | 67.8 KB | 0755 |
|
| js102 | File | 28.97 MB | 0755 |
|
| js102-config | File | 2.03 KB | 0755 |
|
| json-glib-format | File | 18.38 KB | 0755 |
|
| json-glib-validate | File | 14.24 KB | 0755 |
|
| json_pp | File | 4.88 KB | 0755 |
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| File | 0 B | 0 |
|
|
| ldd | File | 5.32 KB | 0755 |
|
| libgcrypt-config | File | 4.52 KB | 0755 |
|
| libinput | File | 62.35 KB | 0755 |
|
| libnetcfg | File | 15.41 KB | 0755 |
|
| libpng-config | File | 2.41 KB | 0755 |
|
| libpng16-config | File | 2.41 KB | 0755 |
|
| libtool | File | 366.5 KB | 0755 |
|
| libtoolize | File | 128.35 KB | 0755 |
|
| libwacom-list-devices | File | 14.24 KB | 0755 |
|
| libwacom-list-local-devices | File | 18.29 KB | 0755 |
|
| libwacom-show-stylus | File | 5.99 KB | 0755 |
|
| libwacom-update-db | File | 8.99 KB | 0755 |
|
| locale | File | 57.56 KB | 0755 |
|
| localedef | File | 326.96 KB | 0755 |
|
| File | 0 B | 0 |
|
|
| lzmainfo | File | 14.23 KB | 0755 |
|
| m4 | File | 154.37 KB | 0755 |
|
| makeconv | File | 50.89 KB | 0755 |
|
| mako-render | File | 961 B | 0755 |
|
| markdown_py | File | 973 B | 0755 |
|
| mpicalc | File | 22.3 KB | 0755 |
|
| msgattrib | File | 26.38 KB | 0755 |
|
| msgcat | File | 26.38 KB | 0755 |
|
| msgcmp | File | 26.38 KB | 0755 |
|
| msgcomm | File | 26.38 KB | 0755 |
|
| msgconv | File | 22.38 KB | 0755 |
|
| msgen | File | 22.38 KB | 0755 |
|
| msgexec | File | 22.38 KB | 0755 |
|
| msgfilter | File | 34.38 KB | 0755 |
|
| msgfmt | File | 82.59 KB | 0755 |
|
| msggrep | File | 114.46 KB | 0755 |
|
| msginit | File | 66.39 KB | 0755 |
|
| msgmerge | File | 74.41 KB | 0755 |
|
| msgunfmt | File | 34.39 KB | 0755 |
|
| msguniq | File | 22.38 KB | 0755 |
|
| ngettext | File | 34.38 KB | 0755 |
|
| nspr-config | File | 2.58 KB | 0755 |
|
| nss-config | File | 2.31 KB | 0755 |
|
| p11-kit | File | 170.45 KB | 0755 |
|
| pango-list | File | 18.13 KB | 0755 |
|
| pango-segmentation | File | 18.21 KB | 0755 |
|
| pango-view | File | 66.42 KB | 0755 |
|
| pcre-config | File | 2.29 KB | 0755 |
|
| pcre2-config | File | 1.93 KB | 0755 |
|
| pdfattach | File | 22.21 KB | 0755 |
|
| pdfdetach | File | 26.32 KB | 0755 |
|
| pdffonts | File | 22.33 KB | 0755 |
|
| pdfimages | File | 42.33 KB | 0755 |
|
| pdfinfo | File | 62.33 KB | 0755 |
|
| pdfseparate | File | 22.21 KB | 0755 |
|
| pdfsig | File | 42.6 KB | 0755 |
|
| pdftocairo | File | 190.3 KB | 0755 |
|
| pdftohtml | File | 118.23 KB | 0755 |
|
| pdftoppm | File | 34.24 KB | 0755 |
|
| pdftops | File | 34.34 KB | 0755 |
|
| pdftotext | File | 50.34 KB | 0755 |
|
| pdfunite | File | 34.21 KB | 0755 |
|
| perl5.34-x86_64-linux-gnu | File | 14.3 KB | 0755 |
|
| perlbug | File | 44.12 KB | 0755 |
|
| perldoc | File | 125 B | 0755 |
|
| perlivp | File | 10.61 KB | 0755 |
|
| perlthanks | File | 44.12 KB | 0755 |
|
| piconv | File | 8.16 KB | 0755 |
|
| pip | File | 225 B | 0755 |
|
| pip3 | File | 225 B | 0755 |
|
| pip3.10 | File | 225 B | 0755 |
|
| pipewire | File | 14.38 KB | 0755 |
|
| pkgdata | File | 43.53 KB | 0755 |
|
| pldd | File | 22.37 KB | 0755 |
|
| pod2html | File | 4.04 KB | 0755 |
|
| pod2man | File | 14.68 KB | 0755 |
|
| pod2text | File | 10.55 KB | 0755 |
|
| pod2usage | File | 4.01 KB | 0755 |
|
| podchecker | File | 3.57 KB | 0755 |
|
| psl | File | 22.16 KB | 0755 |
|
| psl-make-dafsa | File | 22.21 KB | 0755 |
|
| ptar | File | 3.48 KB | 0755 |
|
| ptardiff | File | 2.58 KB | 0755 |
|
| ptargrep | File | 4.29 KB | 0755 |
|
| pw-cat | File | 138.38 KB | 0755 |
|
| pw-cli | File | 134.38 KB | 0755 |
|
| pw-dot | File | 34.38 KB | 0755 |
|
| pw-dsdplay | File | 138.38 KB | 0755 |
|
| pw-dump | File | 94.38 KB | 0755 |
|
| pw-link | File | 30.38 KB | 0755 |
|
| pw-loopback | File | 18.38 KB | 0755 |
|
| pw-metadata | File | 14.38 KB | 0755 |
|
| pw-mididump | File | 34.38 KB | 0755 |
|
| pw-midiplay | File | 138.38 KB | 0755 |
|
| pw-midirecord | File | 138.38 KB | 0755 |
|
| pw-mon | File | 90.42 KB | 0755 |
|
| pw-play | File | 138.38 KB | 0755 |
|
| pw-profiler | File | 26.38 KB | 0755 |
|
| pw-record | File | 138.38 KB | 0755 |
|
| pw-reserve | File | 26.38 KB | 0755 |
|
| pw-top | File | 30.38 KB | 0755 |
|
| pw-v4l2 | File | 1.95 KB | 0755 |
|
| py3compile | File | 12.89 KB | 0755 |
|
| py3versions | File | 11.63 KB | 0755 |
|
| python3.10 | File | 5.66 MB | 0755 |
|
| recode-sr-latin | File | 14.38 KB | 0755 |
|
| rsvg-convert | File | 5.53 MB | 0755 |
|
| secret-tool | File | 22.21 KB | 0755 |
|
| select-default-iwrap | File | 474 B | 0755 |
|
| session-migration | File | 22.15 KB | 0755 |
|
| shasum | File | 9.75 KB | 0755 |
|
| spa-acp-tool | File | 268.12 KB | 0755 |
|
| spa-inspect | File | 78.48 KB | 0755 |
|
| spa-json-dump | File | 14.3 KB | 0755 |
|
| spa-monitor | File | 14.48 KB | 0755 |
|
| spa-resample | File | 30.6 KB | 0755 |
|
| splain | File | 18.96 KB | 0755 |
|
| streamzip | File | 7.75 KB | 0755 |
|
| tzselect | File | 15.02 KB | 0755 |
|
| uconv | File | 54.83 KB | 0755 |
|
| unxz | File | 82.52 KB | 0755 |
|
| update-desktop-database | File | 22.38 KB | 0755 |
|
| update-mime-database | File | 58.23 KB | 0755 |
|
| xdg-dbus-proxy | File | 50.14 KB | 0755 |
|
| xdg-user-dir | File | 234 B | 0755 |
|
| xdg-user-dirs-update | File | 26.23 KB | 0755 |
|
| xml2-config | File | 1.44 KB | 0755 |
|
| xmlcatalog | File | 22.3 KB | 0755 |
|
| xmllint | File | 78.95 KB | 0755 |
|
| xz | File | 82.52 KB | 0755 |
|
| xzcat | File | 82.52 KB | 0755 |
|
| xzcmp | File | 6.86 KB | 0755 |
|
| xzdiff | File | 6.86 KB | 0755 |
|
| xzegrep | File | 5.87 KB | 0755 |
|
| xzfgrep | File | 5.87 KB | 0755 |
|
| xzgrep | File | 5.87 KB | 0755 |
|
| xzless | File | 1.76 KB | 0755 |
|
| xzmore | File | 2.11 KB | 0755 |
|
| zdump | File | 26.21 KB | 0755 |
|
| zipdetails | File | 58.66 KB | 0755 |
|