├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 01-bug-report.yml │ ├── 02-package-request.yml │ └── config.yml ├── dependabot.yml ├── stale.yml ├── static │ └── hosted-by-hetzner.png └── workflows │ ├── bootstrap_archives.yml │ ├── command_not_found.yml │ ├── docker_image.yml │ ├── package_updates.yml │ └── packages.yml ├── .gitignore ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── clean.sh ├── disabled-packages ├── abuild │ ├── Makefile.patch │ ├── abuild-fetch.c.patch │ ├── abuild-keygen.in.patch │ ├── abuild-rmtemp.c.patch │ ├── abuild-sign.in.patch │ ├── abuild.conf.patch │ ├── abuild.in.patch │ ├── build.sh │ ├── checkapk.in.patch │ ├── functions.sh.in.patch │ └── sample.APKBUILD.patch ├── acct │ ├── 0001-acct-6.6.4-cross-compile-fixed.patch │ ├── 0002-files.h.in.patch │ └── build.sh ├── aircrack-ng │ └── build.sh ├── alsa-plugins │ ├── asound.conf │ └── build.sh ├── alsa-utils │ ├── build.sh │ └── volume_mapping.c.patch ├── apg │ ├── Makefile.patch │ ├── build.sh │ └── install-sh.patch ├── apk-tools │ ├── Make.rules.patch │ ├── Makefile.patch │ ├── build.sh │ ├── libfetch-http.c.patch │ ├── src-apk.c.patch │ ├── src-archive.c.patch │ ├── src-commit.c.patch │ ├── src-database.c.patch │ ├── src-io.c.patch │ ├── src-package.c.patch │ └── src-termux_prefix.h.patch ├── apktool │ ├── AndrolibResources.java.patch │ ├── aapt-wrapper.patch │ └── build.sh ├── ass2bdnxml │ ├── CMakeLists.txt.patch │ ├── avs2bdnxml.c.patch │ └── build.sh ├── bettercap │ ├── build.sh │ ├── fix-home-path.patch │ └── fix-paths.patch ├── botan2 │ └── build.sh ├── box86 │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── src_dynarec_dynablock.c.patch │ └── src_mallochook.c.patch ├── btfs │ └── build.sh ├── btrfs-progs │ ├── build.sh │ └── pthread_cancel.patch ├── bytepath │ ├── build.sh │ └── main.lua.patch ├── checkinstall │ ├── Makefile.patch │ ├── build.sh │ ├── checkinstall.patch │ ├── checkinstallrc-dist.patch │ ├── installwatch-Makefile.patch │ └── installwatch.c.patch ├── clash │ └── build.sh ├── clisp │ ├── build.sh │ ├── src-gllib-stdint.in.h.patch │ └── src-makefile.in.patch ├── deborphan │ ├── build.sh │ ├── configure.patch │ ├── errno.patch │ ├── src-Makefile.in.patch │ ├── src-deborphan.c.patch │ └── src-pkginfo.c.patch ├── deno │ ├── build.sh │ ├── cli-tools-upgrade.rs.patch │ ├── ext-ffi-Cargo.toml.patch │ └── runtime-ops-signal.rs.patch ├── dgsh │ ├── build.sh │ ├── core-tools-src-dgsh-tee.c.patch │ ├── core-tools-src-dgsh-w.c.patch │ └── s_cpow.c ├── dovecot │ ├── build.sh │ ├── configure.patch │ └── src-lib-connection.h.patch ├── dynomite │ ├── build.sh │ ├── configure.ac.patch │ ├── contrib-Makefile.am.patch │ └── src-Makefile.am.patch ├── easy-rsa │ └── build.sh ├── fcgi │ └── build.sh ├── fcgiwrap │ ├── build.sh │ └── fix-kill-parameters.patch ├── gimp3 │ ├── build.sh │ ├── gimp-2.99.12-libheif-1.13.patch │ ├── gir │ │ └── 2.99.12 │ │ │ ├── Gimp-3.0.xml │ │ │ └── GimpUi-3.0.xml │ ├── meson.build.patch │ └── plug-ins-python-meson.build.patch ├── gl4es │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── src_CMakeLists.txt.patch │ └── src_glx_glx.c.patch ├── gst123 │ └── build.sh ├── gtk-recordmydesktop │ ├── build.sh │ ├── configure.ac.patch │ └── src-rmdConfig.py.in.patch ├── hiptext │ ├── artiste.cc.patch │ ├── build.sh │ ├── font.cc.patch │ └── movie.cc.patch ├── kphp-timelib │ └── build.sh ├── kphp │ ├── build.sh │ ├── cmake-init-compilation-flags.cmake.patch │ ├── cmake-init-global-vars.cmake.patch │ ├── common-algorithms-simd-int-to-string.h.patch │ ├── common-binlog-binlog-buffer-aio.cpp.patch │ ├── common-binlog-binlog-buffer.h.patch │ ├── common-crc32c_aarch64.cpp.patch │ ├── common-crypto-aes256-aarch64.cpp.patch │ ├── common-fast-backtrace.cpp.patch │ ├── common-resolver.cpp.patch │ ├── common-server-crash-dump.cpp.patch │ ├── common-server-signals.cpp.patch │ ├── compiler-compiler-settings.cpp.patch │ ├── compiler-compiler.cpp.patch │ ├── runtime-allocator.cpp.patch │ ├── runtime-files.cpp.patch │ ├── runtime-openssl.cpp.patch │ ├── runtime-string_functions.cpp.patch │ ├── runtime-udp.cpp.patch │ ├── server-php-master-restart.cpp.patch │ ├── server-php-master-restart.h.patch │ ├── server-php-runner.cpp.patch │ └── server-ucontext-portable.h.patch ├── latino │ └── build.sh ├── libexecinfo │ ├── LICENSE │ ├── build.sh │ └── execinfo.c.patch ├── libfakechroot │ └── build.sh ├── libjemalloc │ └── build.sh ├── libressl │ └── build.sh ├── librusty-v8 │ └── build.sh ├── libsled │ ├── bindings-sled-native-Cargo.toml.diff │ └── build.sh ├── love10 │ ├── build.sh │ ├── src-common-config.h.patch │ └── src-modules-sound-lullaby-GmeDecoder.h.patch ├── man-db │ └── build.sh ├── mdbook-latex │ ├── build.sh │ ├── expat-sys-build.rs.diff │ ├── mdbook-src-renderer-html_handlebars-helpers-navigation.rs.diff │ ├── servo-fontconfig-sys-build.rs.diff │ ├── servo-freetype-sys-build.rs.diff │ └── usvg-src-fontdb.rs.diff ├── mdk4 │ ├── Makefile.patch │ ├── build.sh │ └── common.mak.patch ├── midori │ └── build.sh ├── mingw-w64-crt │ └── build.sh ├── mingw-w64-gcc-libs │ └── build.sh ├── mingw-w64 │ └── build.sh ├── moc │ ├── build.sh │ ├── ffmpeg4.patch │ └── sun_len-def.patch ├── mosh-git │ ├── build.sh │ └── mosh-server.cc.patch ├── neovim-nightly │ ├── build.sh │ ├── custom-bin │ │ └── cmake │ ├── runtime-CMakeLists.txt.patch │ ├── src-nvim-eval-funcs.c.patch │ ├── src-nvim-os-stdpaths.c.patch │ ├── src-nvim-po-CMakeLists.txt.patch │ └── sysinit.vim ├── netcdf-cxx │ └── build.sh ├── ocaml │ └── build.sh ├── odin │ └── build.sh ├── openexr2 │ └── build.sh ├── php7 │ ├── build-php.m4.patch │ ├── build.sh │ ├── ext-opcache-config.m4.patch │ ├── ext-opcache-zend_accelerator_module.c.patch │ ├── ext-pdo_pgsql-config.m4.patch │ ├── ext-pgsql-config.m4.patch │ ├── ext-phar-Makefile.frag.patch │ ├── ext-posix-posix.c.patch │ ├── ext-standard-basic_functions.c.patch │ ├── ext-standard-dns.c.patch │ ├── ext-standard-php_fopen_wrapper.c.patch │ ├── ext-standard-proc_open.c.patch │ ├── iconv-config.m4.patch │ ├── pear-Makefile.frag.patch │ ├── php-fpm.patch │ ├── php7-apache.subpackage.sh │ ├── php7-fpm.subpackage.sh │ ├── php7-pgsql.subpackage.sh │ ├── sapi-apache2handler-config.m4.patch │ └── use-local-fastcgi-header.patch ├── pkgconf │ └── build.sh ├── predict │ ├── build.sh │ ├── clients-kep_reload-kep_reload.c.patch │ ├── predict-g1yyh.c.patch │ ├── predict.c.patch │ ├── predict.h.patch │ ├── utils-fodtrack-0.1-fodtrack.c.patch │ └── utils-moontracker-moontracker.c.patch ├── premake │ ├── build-gmake.unix-Premake4.make.patch │ └── build.sh ├── psutils │ └── build.sh ├── pypanel │ ├── PyPanel-2.4_ppmodule.c.patch │ ├── PyPanel-2.4_pypanel.patch │ ├── PyPanel-2.4_pypanelrc.patch │ ├── PyPanel-2.4_setup.py.patch │ └── build.sh ├── python-pandas │ └── build.sh ├── python2-six │ └── build.sh ├── python2-xlib │ ├── build.sh │ └── python-xlib-0.20_Xlib_support_unix_connect.py.patch ├── roc │ └── build.sh ├── rustc-nightly │ ├── build.sh │ ├── config.toml │ ├── os-tmpdir.patch │ ├── rust-nightly-wasm32-unknown-unknown.subpackage.sh │ ├── rust-src-nightly.subpackage.sh │ ├── src-librustc_llvm-build.rs.patch │ └── use-rustc-nightly ├── sbcl │ ├── build.sh │ └── make-config.sh.patch ├── sc │ ├── Makefile.patch │ ├── build.sh │ └── cmds.c.patch ├── sdl-gfx │ └── build.sh ├── sdl-pango │ └── build.sh ├── slashem-extended │ ├── build.sh │ ├── include-unixconf.h.patch │ ├── src-files.c.patch │ ├── sys-unix-GNUmakefile.patch │ └── sys-unix-unixunix.c.patch ├── termux-x11 │ ├── build.sh │ └── termux-x11.c ├── terraform │ └── build.sh ├── tf │ └── build.sh ├── toybox │ └── build.sh ├── transcode │ ├── build.sh │ ├── configure.in.patch │ ├── export-ffmpeg_cfg.c.patch.txt │ ├── filter-filter_compare.c.patch │ ├── filter-filter_text.c.patch │ ├── filter-parse_csv.awk.in.patch │ ├── filter-preview-filter_pv.c.patch │ ├── import-clone.c.patch │ ├── import-dvd_reader.c.patch │ ├── import-import_mplayer.c.patch │ ├── import-import_vnc.c.patch │ ├── pvm3-tcpvmexportd.c.patch │ ├── src-tc_defaults.h.patch │ ├── src-transcode.c.patch │ └── tools-avisync.c.patch ├── unnethack │ ├── build.sh │ ├── dat_town_wildcard.patch │ └── dont_delete_makedefs.patch ├── vlang │ ├── Makefile.patch │ └── build.sh ├── webkit2gtk-4.0 │ ├── NetworkCacheBlobStorage.cpp.patch │ ├── OptionsCommon.cmake.patch │ ├── PlatformGTK.cmake.patch │ ├── SharedMemoryUnix.cpp.patch │ ├── build.sh │ ├── jsc.cpp.patch │ └── pas_min_heap.h.patch ├── widelands │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── src-base-i18n.cc.patch │ ├── src-network-bufferedconnection.h.patch │ ├── src-network-net_addons.cc.patch │ ├── src-third_party-gettext-gettext.h.patch │ └── widelands-data.subpackage.sh └── wireshark-gtk │ ├── build.sh │ ├── wireshark-2.6.1_caputils_ws80211_utils.c.patch │ ├── wireshark-2.6.1_configure.patch │ ├── wireshark-2.6.1_epan_dissectors_packet-gtp.c.patch │ ├── wireshark-2.6.1_epan_dissectors_packet-snort.c.patch │ ├── wireshark-2.6.1_epan_maxmind_db.c.patch │ ├── wireshark-2.6.1_epan_oids.c.patch │ ├── wireshark-2.6.1_plugins_codecs_l16_mono_Makefile.in.patch │ ├── wireshark-2.6.1_plugins_epan_ethercat_Makefile.in.patch │ ├── wireshark-2.6.1_plugins_epan_gryphon_Makefile.in.patch │ ├── wireshark-2.6.1_plugins_epan_irda_Makefile.in.patch │ ├── wireshark-2.6.1_plugins_epan_mate_Makefile.in.patch │ ├── wireshark-2.6.1_plugins_epan_opcua_Makefile.in.patch │ ├── wireshark-2.6.1_plugins_epan_profinet_Makefile.in.patch │ ├── wireshark-2.6.1_plugins_epan_stats_tree_Makefile.in.patch │ ├── wireshark-2.6.1_plugins_epan_transum_Makefile.in.patch │ ├── wireshark-2.6.1_plugins_epan_unistim_Makefile.in.patch │ ├── wireshark-2.6.1_plugins_epan_wimax_Makefile.in.patch │ ├── wireshark-2.6.1_plugins_epan_wimaxasncp_Makefile.in.patch │ ├── wireshark-2.6.1_plugins_epan_wimaxmacphy_Makefile.in.patch │ ├── wireshark-2.6.1_plugins_wiretap_usbdump_Makefile.in.patch │ ├── wireshark-2.6.1_tools_lemon_lemon.c.patch │ └── wireshark-2.6.1_wsutil_filesystem.c.patch ├── ndk-patches ├── 23c │ ├── bits-struct_file.h.patch │ ├── dirent.h.patch │ ├── grp.h.patch │ ├── linux-fcntl.h.patch │ ├── paths.h.patch │ ├── pwd.h.patch │ ├── redefine-TCSAFLUSH.patch │ ├── semaphore.h.patch │ ├── stdio.h.patch │ ├── stdlib.h.patch │ ├── sys-cdefs.h.patch │ ├── syslog.patch │ ├── unistd.h.patch │ └── utmp.h.patch ├── 26b │ ├── bits-struct_file.h.patch │ ├── dirent.h.patch │ ├── grp.h.patch │ ├── linux-fcntl.h.patch │ ├── paths.h.patch │ ├── pwd.h.patch │ ├── redefine-TCSAFLUSH.patch │ ├── semaphore.h.patch │ ├── stdio.h.patch │ ├── stdlib.h.patch │ ├── sys-cdefs.h.patch │ ├── syslog.patch │ ├── unistd.h.patch │ └── utmp.h.patch ├── langinfo.h └── libintl.h ├── packages.txt ├── packages ├── 0verkill │ └── build.sh ├── 1oom │ ├── build.sh │ └── src-os-unix-os.c.patch ├── 2048-c │ └── build.sh ├── 2ping │ └── build.sh ├── 6tunnel │ └── build.sh ├── 7zip │ ├── build.sh │ ├── disable_hardware_acceleration_support_on_arm.patch │ ├── fix-hardcoded-paths.patch │ └── guard_armv8_feature_from_old_architectures.patch ├── 8086tiny │ ├── 8086tiny.sh │ ├── Makefile.patch │ ├── build.sh │ └── timeb-android.patch ├── aalib │ ├── aalib-1.4_rc5-fix-protos.patch │ ├── aalib-1.4_rc5-more-protos.patch │ ├── acloca-fixes.patch │ ├── build.sh │ ├── config.sub.patch │ ├── configure.patch │ ├── ltconfig.patch │ └── src-aalib.c.patch ├── aapt │ ├── aapt-Main.cpp.patch │ ├── aapt2-io-Util.h.patch │ ├── aapt2-util-Util.cpp.patch │ ├── aapt2.subpackage.sh │ ├── aidl.subpackage.sh │ ├── androidfw-Asset.cpp.patch │ ├── androidfw-AssetManager.cpp.patch │ ├── androidfw-ResourceTypes.cpp.patch │ ├── build.sh │ ├── incfs-util-map_ptr.cpp.patch │ ├── include-android-base-unique_fd.h.patch │ ├── include-utils-CallStack.h.patch │ ├── include-utils-LruCache.h.patch │ ├── libbase-logging.cpp.patch │ ├── libbase-properties.cpp.patch │ ├── libcutils-properties.cpp.patch │ ├── libcutils-sockets_unix.cpp.patch │ ├── libutils-Threads.cpp.patch │ ├── libutils-misc.cpp.patch │ ├── libziparchive-zip_archive.cc.patch │ ├── libziparchive-zip_writer.cc.patch │ └── sources.sh ├── abduco │ └── build.sh ├── abook │ ├── build.sh │ ├── database.h.patch │ └── filter.c.patch ├── abootimg │ ├── 0001-fixed-silly-warnings-due-to-Wall.patch │ ├── 0002-renamed-un-pack-initrd-to-abootimg-un-pack-initrd.patch │ ├── 0003-Fix-man-page-typos.patch │ ├── Makefile.patch │ └── build.sh ├── abseil-cpp │ └── build.sh ├── ack-grep │ └── build.sh ├── acr │ ├── build.sh │ └── no_dev-stderr.patch ├── adms │ └── build.sh ├── aerc │ └── build.sh ├── agate │ └── build.sh ├── age │ └── build.sh ├── agg │ └── build.sh ├── aha │ └── build.sh ├── aichat │ └── build.sh ├── alass │ └── build.sh ├── alembic │ └── build.sh ├── algernon │ ├── build.sh │ └── fix-hardcoded-paths.patch ├── alist │ └── build.sh ├── alpine │ ├── alpine-imap.c.patch │ ├── build.sh │ ├── configure.ac.patch │ ├── env_unix.c.patch │ ├── fdstring.c.patch │ ├── imap-src-oadep-unix-Makefile.patch │ ├── imapmkf.patch │ ├── mtest.c.patch │ ├── os_lnx.c.patch │ ├── os_lnx.h.patch │ ├── pine.conf │ ├── pw_stuff.c.patch │ └── regex-Makefile.patch ├── amber │ ├── Cargo.lock.patch │ ├── Cargo.toml.patch │ └── build.sh ├── amfora │ └── build.sh ├── anacron │ ├── Makefile.patch │ ├── anacron.8.patch │ ├── anacrontab.5.patch │ ├── build.sh │ ├── global.h.patch │ ├── gregor.c.patch │ ├── log.c.patch │ ├── main.c.patch │ ├── obstack.h │ ├── readtab.c.patch │ └── runjob.c.patch ├── android-tools │ ├── build.sh │ ├── vendor_CMakeLists.fastboot.txt.patch │ ├── vendor_CMakeLists.txt.patch │ ├── vendor_adb_pairing_auth_include_adb_pairing_pairing_auth.h.patch │ ├── vendor_adb_pairing_connection_include_adb_pairing_pairing_connection.h.patch │ ├── vendor_adb_pairing_connection_include_adb_pairing_pairing_server.h.patch │ ├── vendor_adb_sysdeps.h.patch │ ├── vendor_base_libs_androidfw_ResourceTypes.cpp.patch │ ├── vendor_boringssl_crypto_CMakeLists.txt.patch │ ├── vendor_core_fastboot_fastboot.cpp.patch │ ├── vendor_core_fastboot_transport.h.patch │ ├── vendor_core_fastboot_usb_linux.cpp.patch │ ├── vendor_core_fs_mgr_liblp_utility.cpp.patch │ ├── vendor_core_init_reboot.cpp.patch │ ├── vendor_core_libcutils_native_handle.cpp.patch │ ├── vendor_core_libcutils_properties.cpp.patch │ ├── vendor_e2fsprogs_lib_ext2fs_ismounted.c.patch │ ├── vendor_extras_partition_tools_lpdump.cc.patch │ ├── vendor_f2fs-tools_lib_libf2fs.c.patch │ ├── vendor_incremental_delivery_incfs_util_include_util_map_ptr.h.patch │ ├── vendor_libbase_include_android-base_unique_fd.h.patch │ ├── vendor_libbase_properties.cpp.patch │ ├── vendor_libziparchive_zip_archive.cc.patch │ ├── vendor_logging_liblog_include_android_log.h.patch │ ├── vendor_logging_liblog_logger_write.cpp.patch │ ├── vendor_selinux_libselinux_fgets_unlocked.patch │ └── vendor_selinux_libselinux_src_android_android_seapp.c.patch ├── androidide-tools │ └── build.sh ├── anewer │ └── build.sh ├── angband │ ├── build.sh │ └── src-main.c.patch ├── angle-grinder │ └── build.sh ├── ani-cli │ ├── ani-cli.patch │ ├── build.sh │ └── mpv.in ├── ansifilter │ └── build.sh ├── ant │ └── build.sh ├── antibody │ └── build.sh ├── antiword │ ├── Makefile.Linux.patch │ ├── antiword.h.patch │ └── build.sh ├── apache2 │ ├── Termux.layout │ ├── build-instdso.sh.patch │ ├── build.sh │ ├── configure.patch │ └── libdummy.patch ├── apkeep │ └── build.sh ├── apksigner │ └── build.sh ├── apr-util │ └── build.sh ├── apr │ └── build.sh ├── apt-file │ ├── apt-file.patch │ └── build.sh ├── apt │ ├── 0000-cmake-fix.patch │ ├── 0001-no-macro-redef.patch │ ├── 0002-no-locales.patch │ ├── 0003-no-srv-records.patch │ ├── 0004-no-hardcoded-paths.patch │ ├── 0005-http2-fix.patch │ ├── 0006-no-init-arch-tuple.patch │ ├── 0007-aptkey-no-root.patch │ ├── 0008-fix-function-args.patch │ ├── 0009-update-error-messages.patch │ ├── 0010-prevent-usage-as-root.patch │ ├── 0011-keep-downloaded-packages.patch │ ├── 0012-termux-id.patch │ ├── 0013-fix-patterns.patch │ ├── apt-ftparchive.subpackage.sh │ ├── apt-transport-tor.subpackage.sh │ └── build.sh ├── aptly │ ├── Makefile.patch │ └── build.sh ├── argon2 │ └── build.sh ├── argp │ ├── argp-standalone-1.5.0-shared.patch │ ├── build.sh │ └── fix-segfault.patch ├── aria2 │ └── build.sh ├── arj │ ├── 001_arches_align.patch │ ├── 002_no_remove_static_const.patch │ ├── 003_64_bit_clean.patch │ ├── 004_parallel_build.patch │ ├── 005_use_system_strnlen.patch │ ├── 006_use_safe_strcpy.patch │ ├── build.sh │ ├── doc_refer_robert_k_jung.patch │ ├── gnu_build_fix.patch │ ├── gnu_build_flags.patch │ ├── gnu_build_pie.patch │ ├── gnu_build_strip.patch │ ├── hurd_no_fcntl_getlk.patch │ ├── integr.patch │ ├── mode.patch │ ├── out-of-bounds-read.patch │ ├── security-afl.patch │ ├── security-traversal-dir.patch │ ├── security-traversal-symlink.patch │ ├── security_format.patch │ ├── self_integrity_64bit.patch │ ├── waitpid-decl.patch │ └── z_cross_compile.patch ├── asciidoc │ └── build.sh ├── asciidoctor │ └── build.sh ├── asciinema │ ├── build.sh │ └── locale.patch ├── aspell-de │ └── build.sh ├── aspell-en │ └── build.sh ├── aspell-es │ └── build.sh ├── aspell-fr │ └── build.sh ├── aspell │ └── build.sh ├── assimp │ └── build.sh ├── astra-sm │ ├── build.sh │ └── src-astra-core-spawn.c.patch ├── asymptote │ ├── build.sh │ └── configure.patch ├── at-spi2-core │ ├── build.sh │ └── gir │ │ ├── Atk-1.0.xml │ │ └── Atspi-2.0.xml ├── at │ ├── at-3.2.1_Makefile.in.patch │ ├── at-3.2.1_at.c.patch │ ├── at-3.2.1_atd.c.patch │ ├── at-3.2.1_atrun.in.patch │ ├── at-3.2.1_daemon.c.patch │ ├── at-3.2.1_getloadavg.c.patch │ ├── at-3.2.1_panic.c.patch │ ├── at-3.2.1_perm.c.patch │ ├── at-3.2.1_privs.h.patch │ └── build.sh ├── atomicparsley │ └── build.sh ├── atomvm │ ├── android-support.patch │ ├── build.sh │ └── sys-packbeam.patch ├── atool │ └── build.sh ├── attr │ ├── build.sh │ ├── tools-attr.c.patch │ └── walk_tree.c.patch ├── atuin │ ├── build.sh │ └── remove-clipboard.patch ├── aubio │ ├── build.sh │ ├── waflib-ConfigSet.py.patch │ ├── waflib-Context.py.patch │ └── wscript.patch ├── autoconf-archive │ └── build.sh ├── autoconf │ ├── autom4te.in.patch │ ├── build.sh │ └── fix-tmpdir.patch ├── autoconf213 │ ├── build.sh │ └── tmpdir.patch ├── autojump │ ├── bin-autojump.sh.patch │ ├── build.sh │ └── install.py.patch ├── automake │ └── build.sh ├── autossh │ ├── LICENSE.patch │ └── build.sh ├── aview │ ├── asciiview.patch │ ├── aview-1.3.0_rc1-clang16.patch │ ├── build.sh │ ├── configure.patch │ └── main.c.patch ├── avra │ └── build.sh ├── await │ └── build.sh ├── awesomeshot │ └── build.sh ├── axel │ └── build.sh ├── b3sum │ └── build.sh ├── babl │ ├── babl-base-meson.build.patch │ ├── babl-fix-tmpdir-path.patch │ ├── build.sh │ ├── gir │ │ └── 0.1.106 │ │ │ └── Babl-0.1.xml │ ├── tests-meson.build.patch │ └── tools-meson.build.patch ├── bacula-fd │ └── build.sh ├── badvpn-udpgw │ ├── build.sh │ └── udpgw-udpgw.c.patch ├── barcode │ └── build.sh ├── base16384 │ └── build.sh ├── bash-completion │ ├── build.sh │ └── completions-man.patch ├── bash │ ├── build.sh │ ├── config-top.h.patch │ ├── error.c.patch │ ├── etc-bash.bashrc │ ├── etc-profile │ ├── examples-loadables-getconf.c.patch │ ├── lib-malloc-stats.c.patch │ ├── lib-malloc-table.c.patch │ ├── lib-malloc-trace.c.patch │ ├── lib-readline-complete.c.patch │ ├── lib-readline-rlconf.h.patch │ ├── lib-readline-util.c.patch │ ├── lib-sh-tmpfile.c.patch │ ├── pathnames.h.in.patch │ └── shell.c.patch ├── bastet │ ├── BastetBlockChooser.hpp.patch │ ├── Config.cpp.patch │ ├── build.sh │ └── makefile.patch ├── bat │ └── build.sh ├── bc-gh │ └── build.sh ├── bc │ └── build.sh ├── bcal │ └── build.sh ├── bdsup2sub │ ├── build.sh │ └── src-Manifest.txt ├── beanshell │ └── build.sh ├── bed │ └── build.sh ├── below │ ├── below-config-src-lib.rs.patch │ ├── build.sh │ ├── libbpf-sys-0.6.0-1-libbpf-include-linux-compiler.h.diff │ ├── libbpf-sys-0.6.0-1-libbpf-include-linux-types.h.diff │ ├── nix-0.22.0-src-sys-statfs.rs.diff │ └── nix-0.23.1-src-sys-statfs.rs.diff ├── bftpd │ ├── bftpd.conf.patch │ ├── build.sh │ ├── configure-clang16.patch │ ├── fix-makefile.patch │ └── fix-struct-name-conflict.patch ├── bgrep │ └── build.sh ├── biboumi │ ├── CMakeLists.txt.patch │ ├── build.sh │ └── cmake-Modules-FindGCRYPT.cmake.patch ├── binaryen │ ├── build.sh │ └── tests.sh ├── binutils-is-llvm │ ├── LICENSE │ └── build.sh ├── binutils-libs │ ├── bfd-dynamic_interpreter.patch │ ├── binutils-bin.subpackage.sh │ ├── binutils-cross.subpackage.sh │ ├── binutils-gold.subpackage.sh │ ├── binutils.patch │ ├── binutils.subpackage.sh │ ├── build.sh │ ├── dirsearch.cc.patch │ ├── gas-decrease-input-buffer-size.patch │ ├── gold-ffsll.c.patch │ ├── native_lib_dirs.patch32 │ ├── native_lib_dirs.patch64 │ ├── no-hardlink.patch.beforehostbuild │ ├── options.cc.patch32 │ └── options.cc.patch64 ├── bionic-host │ ├── LICENSE.txt │ ├── build.sh │ ├── default.xml │ ├── disable-jdk.patch │ └── no-undefined-deps.patch ├── bison │ ├── build.sh │ ├── ffsl.h.patch │ └── lib-stdio-impl.h.patch ├── bitcoin │ ├── build.sh │ └── configure.ac.patch ├── bitlbee │ ├── bitlbee.conf.patch │ ├── build.sh │ ├── configure.patch │ ├── ipc.c.patch │ ├── otr.c.patch │ ├── protocols-purple-ft-direct.c.patch │ ├── protocols-purple-ft.c.patch │ └── utils-bitlbeed.c.patch ├── bk │ └── build.sh ├── blackbox │ └── build.sh ├── blade │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── packages-ssl-CMakeLists.txt.patch │ ├── packages-zlib-CMakeLists.txt.patch │ ├── src-blade_file.c.patch │ ├── src-standard-io.c.patch │ └── src-standard-process.c.patch ├── blink │ ├── blink-blink.c.patch │ ├── blink-machine.h.patch │ ├── build.sh │ └── fix-tmpdir.patch ├── blogc │ ├── build.sh │ └── termux-prefix.patch ├── bmon │ ├── build.sh │ └── config.h.patch ├── boinc │ ├── _autosetup.patch │ ├── build.sh │ ├── client-Makefile.am.patch │ ├── client-app_start.cpp.patch │ ├── client-gui_rpc_server_ops.cpp.patch │ ├── client-hostinfo_network.cpp.patch │ ├── client-hostinfo_unix.cpp.patch │ ├── client-scripts-Makefile.am.patch │ ├── configure.ac.patch │ ├── lib-gui_rpc_client.cpp.patch │ ├── lib-prefs.cpp.patch │ └── lib-synch.cpp.patch ├── boinctui │ ├── add_locale_header.patch │ └── build.sh ├── bombadillo │ └── build.sh ├── boost │ ├── boost-function-support-fn.contains_f_-where-f-is-a-function.patch │ ├── boost-headers.subpackage.sh │ ├── boost-process-detail-posix-shell_path.hpp.patch │ ├── bootstrap.sh.patch │ ├── build.sh │ └── tools-build-src-tools-common.jam.patch ├── bore │ └── build.sh ├── borgbackup │ ├── build.sh │ └── use-distutils.patch ├── botan3 │ └── build.sh ├── boxes │ ├── build.sh │ ├── src-Makefile.patch │ └── src-discovery.c.patch ├── brainfuck │ └── build.sh ├── brogue │ ├── build.sh │ └── config.mk.patch ├── brook │ ├── build.sh │ └── upstream-upgrade-quic-go-to-0.37.4.patch ├── broot │ └── build.sh ├── brotli │ └── build.sh ├── bsd-finger │ ├── build.sh │ ├── configure.patch │ ├── finger-Makefile.patch │ ├── finger-finger.c.patch │ ├── finger-util.c.patch │ ├── fingerd-Makefile.patch │ ├── fingerd-fingerd.c.patch │ └── fingerd-pathnames.h.patch ├── bsd-games │ ├── Config.mk.in.patch │ ├── build.sh │ └── common-util.c.patch ├── btfs2 │ ├── build.sh │ ├── fix-hardcoded-etc-resolv-conf.diff │ └── fix-hardcoded-etc-resolv-conf.sh ├── buf │ └── build.sh ├── build-essential │ └── build.sh ├── busybox │ ├── 0000-use-clang.patch │ ├── 0001-clang-fix.patch │ ├── 0002-hardcoded-paths-fix.patch │ ├── 0003-strchrnul-fix.patch │ ├── 0005-no-change-identity.patch │ ├── 0006-miscutils-crond.patch │ ├── 0007-miscutils-crontab.patch │ ├── 0008-networking-ftpd-no-chroot.patch │ ├── 0009-networking-httpd-default-port.patch │ ├── 0011-networking-tftp-no-chroot.patch │ ├── 0012-util-linux-mount-no-addmntent.patch │ ├── build.sh │ └── busybox.config ├── bvi │ ├── Makefile.in.patch │ ├── build.sh │ ├── column_number_bugfix.patch │ └── comm.c.patch ├── byacc │ └── build.sh ├── byobu │ ├── build.sh │ └── usr-bin-byobu.in.patch ├── c-ares │ ├── 0001-disable-ares-android.patch │ ├── 0002-fix-path-etc-hosts.patch │ └── build.sh ├── c-script │ └── build.sh ├── c-toxcore │ └── build.sh ├── ca-certificates │ ├── build.sh │ └── ca-certificates-java.subpackage.sh ├── cabal-install │ └── build.sh ├── cabextract │ ├── build.sh │ └── mspack-system.h.patch ├── cadaver │ ├── build.sh │ ├── lib-getpass.h.patch │ ├── lib-tempname.c.patch │ ├── src-commands.c.patch │ └── src-edit.c.patch ├── caddy │ └── build.sh ├── calc │ ├── Makefile.config.patch │ ├── Makefile.target.patch │ └── build.sh ├── calcurse │ ├── build.sh │ ├── calcurse-caldav.subpackage.sh │ ├── fix-hardcoded-paths.patch │ └── threading.patch ├── capnproto │ └── build.sh ├── capstone │ └── build.sh ├── cargo-c │ └── build.sh ├── catdoc │ ├── build.sh │ └── src-confutil.c.patch ├── catgirl │ ├── build.sh │ ├── catgirl.1.patch │ ├── chat.h.patch │ ├── command.c.patch │ └── xdg.c.patch ├── catimg │ └── build.sh ├── cava │ ├── Makefile.am.patch │ ├── build.sh │ ├── config.c.patch │ ├── configure.ac.patch │ └── no-posix-shmem.patch ├── cavez-of-phear │ └── build.sh ├── cavif-rs │ └── build.sh ├── cboard │ ├── build.sh │ ├── configure.patch │ └── libchess-pgn.c.patch ├── cbonsai │ ├── build.sh │ └── makefile.patch ├── cc65 │ ├── Makefile.patch │ └── build.sh ├── ccache │ ├── build.sh │ └── no-hardlink.patch ├── cccc │ └── build.sh ├── ccextractor │ ├── build.sh │ ├── src-CMakeLists.txt.patch │ ├── src-lib_ccx-CMakeLists.txt.patch │ ├── src-lib_ccx-ccx_sub_entry_message.pb-c.h.patch │ └── src-lib_ccx-params.c.patch ├── ccls │ ├── build.sh │ └── ccls-0.20220729-llvm16.patch ├── ccrypt │ └── build.sh ├── ceu-lang │ ├── Makefile.patch │ └── build.sh ├── cfengine │ ├── build.sh │ └── pthread_cancel.patch ├── cfm │ └── build.sh ├── cgal │ └── build.sh ├── cgdb │ ├── build.sh │ ├── cgdb.cpp.patch │ └── disable-fdsan.patch ├── cgif │ └── build.sh ├── chafa │ └── build.sh ├── check │ └── build.sh ├── chezmoi │ └── build.sh ├── chibicc │ ├── build.sh │ └── main.c.patch ├── chicken │ ├── Makefile.android.patch │ ├── build.sh │ └── runtime.c.patch ├── choose │ └── build.sh ├── chromaprint │ └── build.sh ├── chrony │ └── build.sh ├── cicada │ ├── build.sh │ └── update-prompt.patch ├── ciso │ ├── Makefile.patch │ ├── build.sh │ └── ciso.c.patch ├── ckermit │ ├── build.sh │ ├── ckcdeb.h.patch │ ├── ckcftp.c.patch │ ├── ckcmai.c.patch │ ├── ckcnet.h.patch │ ├── ckucmd.c.patch │ ├── ckufio.c.patch │ ├── ckupty.c.patch │ ├── ckutio.c.patch │ ├── ckuus4.c.patch │ ├── ckuus5.c.patch │ ├── ckuusx.c.patch │ └── makefile.patch ├── clamav │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── clamd.conf.in │ ├── cmake-FindRust.cmake.patch │ ├── docs-CMakeLists.txt.patch │ ├── fix-hardcoded-paths.patch │ ├── freshclam.conf.in │ ├── libfreshclam-CMakeLists.txt.patch │ ├── no-lutimes.patch │ └── syncfs.c ├── clblast │ └── build.sh ├── cliaoke │ ├── build.sh │ └── karaoke-play_linux.go.patch ├── clidle │ └── build.sh ├── clifm │ └── build.sh ├── clinfo │ └── build.sh ├── clipp │ └── build.sh ├── cloneit │ └── build.sh ├── cloudflared │ └── build.sh ├── clpeak │ └── build.sh ├── clvk │ └── build.sh ├── cmake │ ├── Modules-Platform-Android-GNU.cmake.patch │ ├── Source-cmExecProgramCommand.cxx.patch │ ├── Source-cmLocalUnixMakefileGenerator3.cxx.patch │ ├── build.sh │ └── cmake-curses-gui.subpackage.sh ├── cmark │ └── build.sh ├── cmatrix │ └── build.sh ├── cmocka │ └── build.sh ├── cmus │ ├── build.sh │ ├── checks.patch │ ├── cmus-2.10.0-ffmpeg-6.0.patch │ ├── configure-clang16.patch │ └── configure.patch ├── cmusfm │ └── build.sh ├── codecrypt │ ├── autogen.sh.patch │ ├── build.sh │ └── getpass.patch ├── coinor-clp │ └── build.sh ├── cointop │ ├── build.sh │ └── fix-hardcoded-paths.patch ├── colm │ ├── Makefile.in.patch.beforehostbuild │ ├── build.sh │ └── src-Makefile.in.patch ├── colordiff │ ├── Makefile.patch │ └── build.sh ├── command-not-found │ └── build.sh ├── composer │ ├── build.sh │ └── fix-shebang.patch ├── console-bridge │ └── build.sh ├── cookcli │ ├── build.sh │ └── cook-dependencies.diff ├── coreutils │ ├── build.sh │ ├── configure.patch │ ├── date.c.patch │ ├── fix-paths.patch │ ├── nohup.c.patch │ ├── pwd.c.patch │ ├── src-hostid.c.patch │ ├── src-ls.c.patch │ └── tests │ │ └── tails-c-flag.sh ├── corgi │ ├── 0001-fix-path.patch │ └── build.sh ├── corkscrew │ ├── build.sh │ ├── configure.patch │ └── corkscrew.1 ├── cowsay │ ├── Makefile.patch │ └── build.sh ├── cpio │ ├── build.sh │ └── cpio-2.14-configure-clang16.patch ├── cppcheck │ ├── build.sh │ └── threadexecuter.patch ├── cppi │ └── build.sh ├── cpufetch │ ├── Makefile.patch │ └── build.sh ├── cpulimit │ ├── Makefile.patch │ ├── build.sh │ └── cpulimit.c.patch ├── crawl │ ├── Makefile.patch │ ├── build.sh │ ├── fix-hardcoded-paths.patch │ └── util-gen_ver.pl.diff ├── croc │ └── build.sh ├── cronie │ ├── build.sh │ ├── fix-default-environment.patch │ ├── manpages.patch │ └── single-user-mode.patch ├── crowbook │ └── build.sh ├── crunch │ ├── Makefile.patch │ └── build.sh ├── crypto-monitor │ ├── SetPath.cmake.patch │ └── build.sh ├── cryptopp │ └── build.sh ├── crystal │ └── build.sh ├── cscope │ ├── build.sh │ ├── errno.patch │ └── src-main.c.patch ├── csh │ ├── LICENSE │ ├── Makefile.patch │ ├── build.sh │ ├── csh.c.patch │ ├── dol.c.patch │ ├── file.c.patch │ ├── func.c.patch │ ├── pathnames.h.patch │ ├── proc.c.patch │ └── str.c.patch ├── csol │ ├── CMakeLists.txt.patch │ ├── build.sh │ └── src-util.c.patch ├── csview │ └── build.sh ├── ctags │ └── build.sh ├── ctypes-sh │ ├── 001-ctypes-android.patch │ ├── build.sh │ ├── compile-obstack-c.patch │ ├── configure_ac.patch │ └── fix_callback.patch ├── cuetools │ └── build.sh ├── cups-pdf │ ├── 0000-cups-pdf-3.0.1-ghostscript-gpl-9.54-compat.patch │ ├── 0001-fix-hardcoded-paths.patch │ └── build.sh ├── cups │ ├── build.sh │ ├── cups-desktop-Makefile.patch │ ├── cups-scheduler-Makefile.patch │ ├── cups-thread-private.h.patch │ ├── cups-thread.c.patch │ ├── defconfig-fixes.patch │ ├── no-sbindir.patch │ └── no-tmpdir-permission-check.patch ├── curlie │ └── build.sh ├── curseofwar │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── include_arpa_inet_h.patch │ ├── no_hardcoded_cc.patch │ └── path.c.patch ├── cvs │ ├── build.sh │ ├── src-log.c.patch │ └── src-login.c.patch ├── d8 │ └── build.sh ├── daemonize │ ├── build.sh │ └── daemonize.c.patch ├── dar │ ├── build.sh │ ├── configure.patch │ ├── line_tools.cpp.patch │ ├── no-tests.patch │ └── user_group_bases.cpp.patch ├── darkhttpd │ ├── LICENSE.patch │ ├── Makefile.patch │ └── build.sh ├── dart │ ├── build.sh │ ├── dart-pub-bin.sh │ ├── fix-shell-path.patch │ └── sdk-runtime-bin-directory_android.cc.patch ├── dasel │ └── build.sh ├── dash │ ├── build.sh │ ├── etc-profile.patch │ ├── src-var.c.patch │ └── wait3.patch ├── dasm │ └── build.sh ├── datamash │ └── build.sh ├── dbus-python │ └── build.sh ├── dbus │ ├── build.sh │ ├── bus-activation-helper.c.patch │ ├── dbus-dbus-sysdeps-unix.c.patch │ ├── dbus-dbus-sysdeps-util-unix.c.patch │ └── fix-hardcoded-paths.patch ├── dcmtk │ ├── 0001-remove-android-tests.patch │ ├── 0002-fix-for-pwd.h.patch │ ├── 0003-disable-setuid.patch │ ├── 0004-fix-dcmtk.pc.patch │ ├── arith.h │ │ ├── aarch64.h │ │ ├── arm.h │ │ ├── i686.h │ │ └── x86_64.h │ └── build.sh ├── dcraw │ └── build.sh ├── ddrescue │ ├── build.sh │ └── configure.patch ├── debianutils │ ├── Makefile.am.patch │ └── build.sh ├── debootstrap │ ├── build.sh │ ├── debian-common.patch │ ├── debootstrap.patch │ ├── fix-keyring-paths.patch │ ├── functions.patch │ ├── no-fstab-chown.patch │ └── scripts-debian-common.patch ├── delve │ ├── bininfo.go.patch │ ├── build.sh │ ├── debugger_unix.go.patch │ ├── dump.go.patch │ ├── gdbserver.go.patch │ └── gdbserver_conn.go.patch ├── desed │ └── build.sh ├── deutex │ └── build.sh ├── dex2jar │ └── build.sh ├── dialog │ └── build.sh ├── dictd │ ├── build.sh │ ├── dict.conf │ └── dictd-1.13.0-lex.patch ├── diffstat │ ├── build.sh │ └── diffstat.c.patch ├── difftastic │ └── build.sh ├── diffutils │ └── build.sh ├── dirb │ ├── GCC-now-defaults-to-fno-common.-Use-the-common-modul.patch │ ├── build.sh │ └── src-dirb.c.patch ├── direnv │ ├── GNUmakefile.patch │ └── build.sh ├── direvent │ └── build.sh ├── discordo │ └── build.sh ├── diskus │ └── build.sh ├── distant │ ├── build.sh │ ├── service-manager-0.2.0.diff │ └── termios-0.2.2.diff ├── distcc │ ├── Makefile.in.patch │ ├── build.sh │ └── src_util.c.patch ├── djvulibre │ ├── 0001-remove-register-keyword-for-cxx17.patch │ └── build.sh ├── dmagnetic │ ├── Makefile.patch │ ├── build.sh │ ├── change-prefix.patch.beforehostbuild │ ├── dMagnetic_helpscreens.c.patch.beforehostbuild │ ├── magnetic-scrolls.in │ └── use-dMagnetic-from-PATH.patch ├── dmtx-utils │ └── build.sh ├── dnote-server │ └── build.sh ├── dnote │ └── build.sh ├── dns2tcp │ ├── build.sh │ └── duplicate_symbol.patch ├── dnslookup │ └── build.sh ├── dnsmap │ └── build.sh ├── dnstop │ └── build.sh ├── dnsutils │ ├── bin-delv-delv.c.patch │ ├── build.sh │ ├── fix-underlinking.patch │ └── lib-irs-context.c.patch ├── docbook-xml │ ├── LICENSE.patch │ └── build.sh ├── docbook-xsl │ ├── 765567_non-recursive_string_subst.patch │ └── build.sh ├── docopt │ └── build.sh ├── doctest │ └── build.sh ├── dog │ ├── build.sh │ └── src-resolve.rs.patch ├── dopewars │ ├── build.sh │ ├── serverside.c.patch │ └── setregid.patch ├── dos2unix │ ├── Makefile.patch │ └── build.sh ├── dosfstools │ └── build.sh ├── dotconf │ └── build.sh ├── double-conversion │ └── build.sh ├── doxygen │ └── build.sh ├── dpkg │ ├── build.sh │ ├── configure.patch │ ├── dbmodify_dont_require_root.patch │ ├── dpkg-perl.subpackage.sh │ ├── dpkg-scanpackages.subpackage.sh │ ├── lib-dpkg-atomic-file.c.patch │ ├── lib-dpkg-dpkg.h.patch │ ├── lib-dpkg-path-remove.c.patch │ ├── scripts-dpkg-scanpackages.pl.patch │ ├── src-archives.c.patch │ ├── src-configure.c.patch │ ├── src-help.c.patch │ └── src-statoverride-main.c.patch ├── dropbear │ ├── Makefile.in.patch │ ├── build.sh │ ├── common-session.c.patch │ ├── compat.c.patch │ ├── default_options.h.patch │ ├── gensignkey.c.patch │ ├── loginrec.c.patch │ ├── sshpty.c.patch │ ├── svr-agentfwd.c.patch │ ├── svr-auth.c.patch │ ├── svr-authpasswd.c.patch │ ├── svr-chansession.c.patch │ └── sysoptions.h.patch ├── dtach │ └── build.sh ├── dtc │ └── build.sh ├── dte │ └── build.sh ├── dua │ └── build.sh ├── duc │ ├── 0001-create-.cache-if-needed.patch │ └── build.sh ├── duf │ └── build.sh ├── dufs │ └── build.sh ├── dust │ └── build.sh ├── dvdauthor │ ├── build.sh │ └── src-conffile.c.patch ├── dvtm │ ├── build.sh │ ├── fix-fifo-path.patch │ └── vt.c.patch ├── dwarves │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── dutil.h.patch │ ├── elfcreator.h.patch │ ├── lib-bpf-include-linux-compiler.h.patch │ ├── lib-bpf-include-linux-types.h.patch │ └── obstack.h ├── dx │ └── build.sh ├── e2fsprogs │ ├── build.sh │ ├── clang-compat.patch │ ├── doc-Makefile.in.patch │ ├── fix-hardcoded-paths.patch │ ├── fsmap.h.patch │ ├── hasmntopt.patch │ └── qsort.patch ├── e2tools │ └── build.sh ├── ecj │ ├── build.sh │ ├── ecj │ └── ecj-24 ├── ecl │ ├── build.sh │ ├── src-aclocal.m4.patch │ └── src-gmp-acinclude.m4.patch.beforehostbuild ├── ed │ ├── build.sh │ └── configure.patch ├── edbrowse │ ├── LICENSE.quickjs │ ├── build.sh │ └── src-makefile.patch ├── eigen │ └── build.sh ├── eja │ ├── build.sh │ └── eja.c.patch ├── electric-fence │ ├── Makefile.patch │ ├── build.sh │ └── ef.sh ├── electrum │ ├── android.patch │ ├── build.sh │ └── only-text-gui.patch ├── elinks │ ├── build.sh │ ├── elinks-fix-paths.patch │ └── elinks-skip-xterm-check.patch ├── elixir │ └── build.sh ├── eltclsh │ └── build.sh ├── elvish │ └── build.sh ├── emacs │ ├── Makefile.patch │ ├── build.sh │ ├── disable-fdsan.patch │ ├── lib-src-emacsclient.c.patch │ ├── lib-stdio-impl.h.patch │ ├── lisp-cus-start.el.patch.beforehostbuild │ ├── lisp-loadup.el-2.patch.beforehostbuild │ ├── lisp-net-tramp.el.patch.beforehostbuild │ ├── lisp-server.el.patch.beforehostbuild │ ├── lisp-term.el.patch.beforehostbuild │ ├── lisp-textmodes-ispell.el.patch.beforehostbuild │ ├── lisp.Makefile.in.patch │ ├── no-procent_n-android.patch │ ├── no_user_fullname.patch │ ├── site-start.el │ ├── src-callproc.c.patch │ ├── src-fileio.c.patch │ └── src-filelock.c.patch ├── emscripten │ ├── build.sh │ ├── emscripten-binaryen.subpackage.sh │ ├── emscripten-llvm.subpackage.sh │ ├── emscripten-tests-third-party.subpackage.sh │ ├── fix-rpath.py │ ├── llvm-project-clang-lib-Driver-ToolChain.cpp.patch.diff │ ├── llvm-project-clang-lib-Driver-ToolChains-Linux.cpp.patch.diff │ ├── llvm-project-compiler-rt-CMakeLists.txt.patch.diff │ ├── llvm-project-compiler-rt-lib-builtins-CMakeLists.txt.patch.diff │ ├── llvm-project-libunwind-CMakeLists.txt.patch.diff │ ├── llvm-project-llvm-tools-llvm-rtdyld-llvm-rtdyld.cpp.patch.diff │ └── tests.sh ├── enblend │ └── build.sh ├── enchant │ └── build.sh ├── enscript │ ├── afm.c.patch │ ├── build.sh │ ├── diffpp.in.patch │ ├── enscript.cfg.patch │ └── lock.h.patch ├── entr │ ├── build.sh │ └── entr.c.patch ├── erlang │ ├── build.sh │ ├── emulator-asmjit-virtmem-shm.patch │ ├── erts-emulator-Makefile.in.patch │ ├── erts-emulator-nifs-common-socket_util.c.patch │ └── prefix.patch ├── esbuild │ └── build.sh ├── espeak │ └── build.sh ├── et │ ├── build.sh │ └── src-terminal-TerminalServerMain.cpp.patch ├── etsh │ ├── Makefile.patch │ └── build.sh ├── exercism │ └── build.sh ├── exhale │ └── build.sh ├── exiftool │ └── build.sh ├── exiv2 │ ├── build.sh │ └── exiv2json.cpp.patch ├── expect │ ├── Makefile.in.patch │ ├── build.sh │ ├── configure.in.patch │ ├── expect-5.45-headers.patch │ └── expect-5.45.4-configure-clang16.patch ├── eza │ └── build.sh ├── fact++ │ ├── build.sh │ ├── src-CMakeLists.txt.patch │ ├── src-FaCT++-CMakeLists.txt.patch │ ├── src-FaCT++.C-CMakeLists.txt.patch │ └── src-Kernel-AtomicDecomposer.cpp.patch ├── fakeroot │ ├── build.sh │ ├── communicate.c.patch │ ├── doc-Makefile.am.patch │ ├── dont-wrap-while-environ-is-null.patch │ ├── fakeroot-1.23_faked.c.patch │ ├── fakeroot-1.23_libfakeroot.c.patch │ └── fakeroot-1.23_scripts_fakeroot.in.patch ├── fasd │ └── build.sh ├── fastfetch │ └── build.sh ├── fastmod │ ├── build.sh │ └── vi-as-default-editor.patch ├── fatsort │ ├── build.sh │ └── src-Makefile.patch ├── fclones │ └── build.sh ├── fcp │ └── build.sh ├── fd │ └── build.sh ├── fdkaac │ └── build.sh ├── fdm │ ├── LICENSE │ ├── LICENSE.BSD │ ├── build.sh │ ├── configure.patch │ └── fix-safemove.patch ├── fdroidcl │ └── build.sh ├── fdupes │ ├── LICENSE.patch │ └── build.sh ├── fennel │ ├── Makefile.patch │ └── build.sh ├── feroxbuster │ └── build.sh ├── fetchmail │ ├── build.sh │ ├── fetchmailconf-exec-python.patch │ ├── fetchmailconf.subpackage.sh │ └── fix-passwordlen-redefinition.patch ├── fex │ ├── build.sh │ └── missing_functional.patch ├── fff │ └── build.sh ├── ffmpeg │ ├── add-av_stream_get_first_dts-for-chromium.patch │ ├── build.sh │ ├── configure.patch │ └── libavutil-file_open.c.patch ├── ffsend │ └── build.sh ├── fftw │ ├── build.sh │ └── fix-wisdom_dir.patch ├── figlet │ ├── build.sh │ ├── figlet.c.patch │ └── makefile.patch ├── file │ ├── build.sh │ └── fix-paths.patch ├── finch │ ├── arpa │ │ ├── nameser.h │ │ └── nameser_compat.h │ ├── bonjour-makefile.patch │ ├── build.sh │ ├── configure.patch │ ├── dont-build-nullclient-example.patch │ ├── gg-makefile.patch │ ├── irc-makefile.patch │ ├── jabber-makefile.patch │ ├── sametime-makefile.patch │ ├── sasl_callback-proc.patch │ ├── silc-makefile.patch │ ├── silc10-makefile.patch │ ├── simple-makefile.patch │ └── ssl-makefile.patch ├── findomain │ ├── build.sh │ └── trust-dns-resolver.diff ├── findutils │ ├── build.sh │ ├── configure.patch │ ├── find-parser.c.patch │ ├── gl-lib-mountlist.c.patch │ └── gl-lib-stdio-impl.h.patch ├── fish │ ├── CMakeLists.txt.patch │ ├── WIFSTOPPED.patch │ ├── build.sh │ ├── create_manpage_completions.py.patch │ ├── src-fish.cpp.patch │ └── src-path.cpp.patch ├── flang │ ├── 0001-find-native-mlir-tablegen.patch │ ├── 0002-remove-some-macros-that-breaks-building.patch │ ├── build.sh │ ├── postinst.sh.in │ └── prerm.sh.in ├── flatbuffers │ └── build.sh ├── flex │ ├── Makefile.in.patch │ └── build.sh ├── fluidsynth │ └── build.sh ├── flyctl │ ├── build.sh │ └── getcpuinfo.patch ├── fm │ └── build.sh ├── fmt │ └── build.sh ├── fontconfig │ ├── build.sh │ ├── fcatomic.c.patch │ └── fontconfig-utils.subpackage.sh ├── fortune │ ├── build.sh │ └── fortune.c.patch ├── fossil │ ├── auto.def.patch │ ├── build.sh │ └── src-popen.c.patch ├── freecolor │ ├── Makefile.in.patch │ └── build.sh ├── freeimage │ ├── Makefile.gnu.patch │ ├── Source-LibJXR-image-decode-segdec.c.patch │ ├── Source-LibJXR-jxrgluelib-JXRGlueJxr.c.patch │ ├── Source-ZLib-gzguts.h.patch │ ├── build.sh │ └── license-bsd-2-clause.txt ├── freetype │ └── build.sh ├── frei0r-plugins │ └── build.sh ├── fribidi │ └── build.sh ├── frobtads │ ├── build.sh │ └── no_asprintf.patch ├── frogcomposband │ ├── LICENSE │ ├── autoconf.h.in.patch │ ├── build.sh │ ├── h-config.h.patch │ ├── h-system.h.patch │ └── util.c.patch ├── frotz │ ├── build.sh │ ├── ux_frotz.h.patch │ └── zgames ├── frp │ └── build.sh ├── fselect │ └── build.sh ├── fsmon │ └── build.sh ├── fte │ ├── Makefile.patch │ ├── build.sh │ ├── install.patch │ ├── src-cfte.cpp.patch │ ├── src-e_cvslog.cpp.patch │ ├── src-e_svnlog.cpp.patch │ ├── src-e_unix.cpp.patch │ ├── src-fte-unix.mak.patch │ └── src-fte.cpp.patch ├── fwknop │ ├── build.sh │ └── client-log_msg.h.patch ├── fx │ └── build.sh ├── fzf │ ├── bin-fzf-tmux.patch │ └── build.sh ├── fzy │ ├── Makefile.patch │ └── build.sh ├── game-music-emu │ ├── build.sh │ └── player-CMakeLists.txt.patch ├── gap │ ├── build.sh │ ├── compiled.h-path.patch │ └── gap-packages.subpackage.sh ├── gatling │ ├── GNUmakefile.patch │ ├── build.sh │ ├── dirfd.c.patch │ └── http.c.patch ├── gauche │ ├── build.sh │ ├── configure.ac.patch │ ├── ext-Makefile.ext.in.patch │ ├── ext-dbm-Makefile.in.patch │ ├── ext-text-gettext.scm.patch │ ├── ext-tls-gauche-tls.h.patch │ ├── fake-ndbm-makedb.c │ ├── gc-os_dep.c.patch │ ├── lib-gauche-configure.scm.patch │ ├── lib-gauche-interactive-toplevel.scm.patch │ ├── lib-gauche-package-util.scm.patch │ ├── libsrc-gauche-process.scm.patch │ ├── src-gauche-priv-atomicP.h.patch │ ├── src-gauche-priv-pairP.h.patch │ ├── src-libsys.c.patch │ ├── src-libsys.scm.patch │ └── src-system.c.patch ├── gawk │ ├── build.sh │ ├── configure.patch │ ├── fix-locale.patch │ ├── io.c.patch │ ├── main.c.patch │ ├── no_pw_gecos.patch │ └── stack_index.patch ├── gbt │ └── build.sh ├── gcal │ ├── build.sh │ ├── gcal-4.1-configure-clang16.patch │ ├── gnulib.patch │ └── lib-strerror_r.c.patch ├── gdal │ └── build.sh ├── gdb │ ├── build.sh │ ├── fix-tmp_prefix.patch │ ├── gdb-amd64-linux-nat.c.patch │ ├── gdb-cli-cli-cmds.c.patch │ ├── gdb-linux-thread-db.c.patch │ ├── gdb-solib.c.patch │ ├── gdbserver-configure.patch │ ├── gdbserver.subpackage.sh │ ├── gdbsupport-job-control.cc.patch │ ├── gdbsupport-pathstuff.cc.patch │ ├── gdbsupport-signals-state-save-restore.cc.patch │ ├── gnulib-configure.patch │ ├── gregset.h.patch │ ├── linux_thread_db_no_th_unique.patch │ ├── python.patch │ └── readline-histlib.h.patch.debug ├── gdbm │ └── build.sh ├── gdk-pixbuf │ ├── build.sh │ ├── docs-meson.build.patch │ ├── gir │ │ └── 2.42.10 │ │ │ ├── GdkPixbuf-2.0.xml │ │ │ └── GdkPixdata-2.0.xml │ └── hooks │ │ ├── postinst.in │ │ ├── postrm.in │ │ └── triggers.in ├── gdrive-downloader │ └── build.sh ├── gdu │ └── build.sh ├── geckodriver │ └── build.sh ├── gecode │ ├── build.sh │ └── fix-const-weights-clang.patch ├── gegl │ ├── build.sh │ └── gir │ │ └── 0.4.46 │ │ └── Gegl-0.4.xml ├── gengetopt │ └── build.sh ├── geographiclib │ ├── build.sh │ └── cmake-CMakeLists.txt.patch ├── geoip2-database │ └── build.sh ├── germanium │ ├── build.sh │ └── fix-fontdir.patch ├── getconf │ └── build.sh ├── geth │ ├── build.sh │ └── geth-utils.subpackage.sh ├── gettext │ ├── build.sh │ └── msginit.c.patch ├── gexiv2 │ ├── build.sh │ └── gir │ │ └── GExiv2-0.10.xml ├── gflags │ └── build.sh ├── gforth │ ├── Makefile.in.patch │ ├── Makefile.in.patch.beforehostbuild │ ├── arch-arm-machine.h.patch │ ├── build.sh │ ├── config.sub.patch │ ├── preforth.in.patch │ └── prim.patch ├── gh │ └── build.sh ├── ghc-libs │ ├── always-use-pic-on-android-for-dynexec.patch │ ├── always_link_m.patch │ ├── build.sh │ ├── correct-host-triplet.patch │ ├── fix-target-elf-check.patch │ ├── ghc.subpackage.sh │ ├── libiserv-enable-network.patch │ ├── semaphore.patch │ ├── set-default-prefix.patch │ ├── undefined_symbols.patch │ └── utils-extra-ghc-opts.patch ├── ghostscript │ ├── arch-aarch64.h │ ├── arch-arm.h │ ├── arch-i686.h │ ├── arch-x86_64.h │ ├── base-gserrors.h.patch │ ├── build.sh │ ├── configure.patch │ └── psi-idict.c.patch ├── giflib │ ├── Makefile.patch │ ├── build.sh │ └── giflib-utils.subpackage.sh ├── gifsicle │ └── build.sh ├── gifski │ └── build.sh ├── git-crypt │ └── build.sh ├── git-delta │ └── build.sh ├── git-lfs │ └── build.sh ├── git-sizer │ └── build.sh ├── git │ ├── build.sh │ ├── config.c.patch │ ├── config.mak.uname.patch │ ├── disable-fdsan.patch │ ├── disable_daemon_syslog.patch │ ├── git-gitk.subpackage.sh │ ├── git-gui.subpackage.sh │ ├── git-svn.subpackage.sh │ ├── git.patch │ ├── help.c.patch │ ├── run-command.c.patch │ └── tempfile.c.patch ├── gitea │ ├── app.ini │ └── build.sh ├── gitflow-avh │ └── build.sh ├── gitoxide │ ├── build.rs.patch │ ├── build.sh │ └── trust-dns-resolver.diff ├── gitui │ └── build.sh ├── gkermit │ ├── build.sh │ ├── gkermit.c.patch │ ├── gunixio.c.patch │ └── makefile.patch ├── glab-cli │ └── build.sh ├── glib-networking │ ├── build.sh │ ├── meson.build.patch │ └── tls-meson.build.patch ├── glib │ ├── build.sh │ ├── gio-gdbusprivate.c.patch │ ├── gio-gkeyfilesettingsbackend.c.patch │ ├── gio-gnetworking.h.in.patch │ ├── gio-gunixmounts.c.patch │ ├── gio-xdgmime-xdgmime.c.patch │ ├── glib-bin.subpackage.sh │ ├── glib-cross.subpackage.sh │ ├── glib-gcharset.c.patch │ ├── glib-gspawn.c.patch │ ├── glib-gthread-posix.c.patch │ ├── glib-gthreadprivate.h.patch │ ├── glib-gtimezone.patch │ ├── glib-gtypes.h.patch │ ├── glib-gutils.c.patch │ ├── glib-tests-meson.build.patch │ ├── hooks │ │ ├── postinst.in │ │ ├── postrm.in │ │ └── triggers.in │ └── meson.build.patch ├── glm │ ├── 6059c5767.patch │ └── build.sh ├── global │ ├── build.sh │ ├── echo-path.patch │ └── libutil-makepath.c.patch ├── glow │ └── build.sh ├── glpk │ └── build.sh ├── glslang │ └── build.sh ├── gluelang │ ├── build.sh │ ├── src-Makefile.patch │ └── src-main.cc.patch ├── glulxe │ ├── Makefile.patch │ ├── build.sh │ └── glkterm.patch ├── gmic │ ├── CImg.h.patch │ ├── Makefile.patch │ ├── build.sh │ └── gmic-gm.subpackage.sh ├── gn │ ├── build-gen.py.patch │ ├── build.sh │ └── src-util-aligned_alloc.h.patch ├── gnucap │ ├── CXX.patch │ ├── apps-Make1.patch │ ├── apps-configure.patch │ ├── build.sh │ ├── lib-configure.patch │ └── no_termcap.patch.beforehostbuild ├── gnuchess │ ├── build.sh │ ├── src-components.cc.patch │ └── src-main.cc.patch ├── gnucobol │ ├── build.sh │ ├── configure.patch │ └── libcob-common.c.patch ├── gnugo │ ├── build.sh │ └── no-duplicate-symbols.patch.beforehostbuild ├── gnuit │ ├── build.sh │ ├── system.c.patch │ └── tilde.c-history.c.patch.debug ├── gnunet │ ├── build.sh │ ├── getlogin_r.patch │ ├── no-curl-gnutls.patch │ └── no-git.patch ├── gnupg │ ├── agent-agent.h.patch │ ├── build.sh │ ├── common-dotlock.c.patch │ ├── configure.patch │ ├── dn_skipname.patch │ ├── fix-paths.patch │ ├── g10-keylist.c.patch │ ├── gnupg-2.4.3-no-ldap.patch │ ├── gpgv.subpackage.sh │ ├── mkdefsinc.c.patch.ondevice │ └── scdaemon.subpackage.sh ├── gnuplot │ ├── Makefile.patch │ ├── build.sh │ ├── plot.c.patch │ └── src-command.c.patch ├── gnurl │ └── build.sh ├── gnushogi │ ├── build.sh │ ├── gnushogi-makefile-in.patch │ └── use_libncurses.patch ├── gnuski │ ├── Makefile.patch │ ├── build.sh │ └── objects.h.patch ├── gnustep-make │ └── build.sh ├── go-findimagedupes │ └── build.sh ├── goaccess │ ├── Makefile.in.patch │ ├── build.sh │ └── fix-paths.patch ├── gobang │ └── build.sh ├── gobject-introspection │ ├── build.sh │ ├── g-ir-scanner.subpackage.sh │ ├── gi-cross-launcher-on-device.in │ ├── gi-cross-launcher.sh │ ├── gir │ │ ├── GIRepository-2.0.xml │ │ ├── GLib-2.0.xml │ │ ├── GModule-2.0.xml │ │ ├── GObject-2.0.xml │ │ └── Gio-2.0.xml │ ├── meson-python.diff │ └── meson.build.patch ├── gogs │ ├── app.ini │ └── build.sh ├── gojq │ └── build.sh ├── golang │ ├── build.sh │ ├── fix-GOPROXY-and-GOSUMDB-default-is-empty.patch │ ├── fix-hardcoded-etc-resolv-conf.diff │ ├── fix-hardcoded-etc-resolv-conf.sh │ ├── golang-doc.subpackage.sh │ ├── src-crypto-x509-root_linux.go.patch │ ├── src-os-file_unix.go.patch │ ├── src-runtime-cgo-cgo.go.patch │ └── src-runtime-cgo-gcc_android.c.patch ├── gomp │ ├── build.sh │ └── fix_hardcoded_path.patch ├── gomuks │ └── build.sh ├── google-drive-upload │ └── build.sh ├── google-glog │ ├── CMakeLists.txt.patch │ └── build.sh ├── googletest │ └── build.sh ├── goose │ └── build.sh ├── gopass │ └── build.sh ├── gopher │ ├── Makefile.config.in.patch │ ├── build.sh │ ├── conf.h.patch │ ├── configure-clang16.patch │ ├── gopher-download.c.patch │ └── gopher-gopher.c.patch ├── gotop │ └── build.sh ├── gotty │ └── build.sh ├── gpac │ ├── build.sh │ ├── configure.patch │ ├── gpac-2.2.1-ffmpeg-6.0.patch │ ├── src-filters-in_dvb4linux.c.patch │ ├── src-jsmods-core.c.patch │ ├── src-utils-os_config_init.c.patch │ └── src-utils-os_divers.c.patch ├── gperf │ ├── build.sh │ ├── lib-getline.cc.patch │ └── output.cc.patch ├── gpgme │ ├── build.sh │ ├── gpgmepp-static.subpackage.sh │ └── gpgmepp.subpackage.sh ├── gping │ └── build.sh ├── gpsbabel │ └── build.sh ├── gradle │ └── build.sh ├── grafana │ ├── bingo-Variables.mk.patch │ ├── build.sh │ └── yarn.lock.patch ├── graphene │ ├── build.sh │ ├── gir │ │ └── 1.10.8 │ │ │ └── Graphene-1.0.xml │ └── wrap-python.diff ├── graphicsmagick │ └── build.sh ├── graphviz │ ├── build.sh │ ├── dl_iterate_phdr.patch │ └── lib-gvc-gvconfig.c.patch ├── greed │ ├── build.sh │ ├── lockfile_path.patch │ └── makefile.patch ├── grep │ ├── build.sh │ └── fix-locale.patch ├── grex │ └── build.sh ├── groff │ ├── build.sh │ └── math_config.h.patch ├── gron │ └── build.sh ├── groovy │ ├── AnsiRenderWriter.java │ ├── bin-startGroovy.patch │ ├── build.sh │ └── jline2.patch ├── grv │ ├── build.sh │ └── git2go.v27.patch ├── gsl │ └── build.sh ├── gst-libav │ └── build.sh ├── gst-plugins-bad │ └── build.sh ├── gst-plugins-base │ ├── build.sh │ ├── gir │ │ └── 1.22.7 │ │ │ ├── GstAllocators-1.0.xml │ │ │ ├── GstApp-1.0.xml │ │ │ ├── GstAudio-1.0.xml │ │ │ ├── GstGL-1.0.xml │ │ │ ├── GstGLEGL-1.0.xml │ │ │ ├── GstGLX11-1.0.xml │ │ │ ├── GstPbutils-1.0.xml │ │ │ ├── GstRtp-1.0.xml │ │ │ ├── GstRtsp-1.0.xml │ │ │ ├── GstSdp-1.0.xml │ │ │ ├── GstTag-1.0.xml │ │ │ └── GstVideo-1.0.xml │ └── gst-plugins-gl-headers.subpackage.sh ├── gst-plugins-good │ ├── autoplug_libcaca.patch │ └── build.sh ├── gst-plugins-ugly │ └── build.sh ├── gst-python │ └── build.sh ├── gstreamer │ ├── build.sh │ └── gir │ │ ├── Gst-1.0.xml │ │ ├── GstBase-1.0.xml │ │ ├── GstController-1.0.xml │ │ └── GstNet-1.0.xml ├── gtypist │ ├── build.sh │ ├── dont_build_manpage.patch │ ├── src-cursmenu.c.patch │ ├── src-gtypist.c.patch │ └── src-utf8.c.patch ├── guile │ ├── build.sh │ ├── malloc.h │ └── tests │ │ └── system_star.sh ├── guile18 │ ├── build.sh │ └── configure.patch ├── gum │ └── build.sh ├── gumbo-parser │ └── build.sh ├── gzip │ ├── build.sh │ ├── fix-gzexe.patch │ ├── zdiff.in.patch │ └── zgrep.in.patch ├── haproxy │ ├── Makefile.patch │ ├── build.sh │ └── haproxy.cfg.in ├── harfbuzz │ ├── build.sh │ ├── gir │ │ └── 7.3.0 │ │ │ └── HarfBuzz-0.0.xml │ ├── harfbuzz-icu.subpackage.sh │ └── harfbuzz-utils.subpackage.sh ├── has │ └── build.sh ├── hash-slinger │ ├── build.sh │ ├── openpgpkey.patch │ └── tlsa.patch ├── hashdeep │ ├── PRIu_PRId.patch │ ├── build.sh │ ├── configure.ac.patch │ └── hash.patch ├── hcl │ └── build.sh ├── hcloud │ └── build.sh ├── helix │ ├── build.sh │ ├── helix-grammars.subpackage.sh │ └── libc++_shared-not-found.patch ├── hello │ ├── build.sh │ └── lib-stdio-impl.h.patch ├── helm │ └── build.sh ├── help2man │ └── build.sh ├── hexcurse │ ├── build.sh │ ├── hexcurse.c.patch │ └── src-screen.c.patch ├── hexedit │ └── build.sh ├── hexer │ └── build.sh ├── hexyl │ └── build.sh ├── heyu │ ├── Configure.diff │ ├── Makefile.in.patch │ ├── build.sh │ └── termux-paths.patch ├── hfsutils │ ├── build.sh │ ├── lfs.patch │ ├── no-suid.patch │ └── replace_hardlink_with_symlink.patch ├── hilbish │ ├── build.sh │ └── fix-hardcoded-path.patch ├── hoedown │ ├── Makefile.patch │ └── build.sh ├── hollywood │ ├── build.sh │ ├── hollywood-1.20_lib_hollywood_apg.patch │ ├── hollywood-1.20_lib_hollywood_errno.patch │ ├── hollywood-1.20_lib_hollywood_hexdump.patch │ ├── hollywood-1.20_lib_hollywood_logs.patch │ ├── hollywood-1.20_lib_hollywood_man.patch │ ├── hollywood-1.20_lib_hollywood_sshart.patch │ ├── hollywood-1.20_lib_hollywood_stat.patch │ └── hollywood-1.20_lib_hollywood_tree.patch ├── hors │ └── build.sh ├── hr │ └── build.sh ├── hstr │ ├── build.sh │ ├── no-TIOCSTI.patch │ └── src-hstr_utils.c.patch ├── html-xml-utils │ ├── Makefile.am.patch │ ├── build.sh │ ├── hsearch.patch │ ├── include-getopt-h.patch │ └── no-type-redef.patch ├── html2text │ └── build.sh ├── htop │ ├── access-procstat-file.patch │ ├── build.sh │ ├── fix-missing-macros.patch │ ├── proc-stat.patch │ └── procstat ├── htslib │ └── build.sh ├── httping │ ├── build.sh │ └── fix-spam_file-path.patch ├── httrack │ ├── build.sh │ ├── html-Makefile.in.patch │ ├── htsglobal.h.patch │ ├── httrack-data.subpackage.sh │ ├── src-Makefile.in.patch │ ├── src-proxy-proxytrack.h.patch │ └── store.c.patch ├── hub │ ├── build.sh │ └── utils-utils.go.patch ├── hugo │ └── build.sh ├── hummin │ └── build.sh ├── hunspell-en-us │ └── build.sh ├── hunspell-fr │ └── build.sh ├── hunspell-hu │ └── build.sh ├── hunspell-nl │ └── build.sh ├── hunspell-ru │ └── build.sh ├── hunspell │ ├── build.sh │ ├── fix-hardcoded-paths.patch │ └── src-tools-hunspell.cxx.patch ├── hut │ ├── Makefile.patch │ └── build.sh ├── hydroxide │ ├── build.sh │ └── mailbox.go.patch ├── hyperfine │ └── build.sh ├── hz │ └── build.sh ├── i2pd │ ├── build.sh │ ├── contrib-i2pd.conf.patch │ └── fix-paths.patch ├── icecast │ ├── build.sh │ └── thread.c.patch ├── ices │ └── build.sh ├── icoutils │ └── build.sh ├── id3lib │ ├── build.sh │ ├── configure.in.patch │ └── src-Makefile.am.patch ├── id3ted │ ├── build.sh │ └── id3ted-1.0-fix-oob.patch ├── id3v2 │ ├── Makefile.patch │ └── build.sh ├── imagemagick │ └── build.sh ├── imath │ └── build.sh ├── imgflo │ ├── LICENSE.patch │ ├── Makefile.patch │ ├── build.sh │ ├── env.sh.in.patch │ └── library.c.patch ├── imlib2 │ ├── 0000-fix-mblen.patch │ ├── 0002-fix-hardcoded-paths.patch │ └── build.sh ├── indent │ ├── Makefile.in.patch │ ├── build.sh │ └── code_io.c.patch ├── inetutils │ ├── build.sh │ ├── disable-fdsan.patch │ ├── ftpd.c.patch │ ├── if_index.c.patch │ ├── lib-stdio-impl.h.patch │ ├── malloc.h │ ├── telnet-sys_bsd.c.patch │ └── utmp_logout.c.patch ├── influxdb │ └── build.sh ├── innoextract │ └── build.sh ├── inotify-tools │ └── build.sh ├── intltool │ └── build.sh ├── inxi │ └── build.sh ├── ipcalc │ └── build.sh ├── iperf3 │ ├── build.sh │ ├── main_Makefile.in.patch │ └── src-iperf_api.c.patch ├── ipfs │ ├── build.sh │ └── go-ipfs-0.4.15_bin_dist_get.patch ├── ipmitool │ ├── build.sh │ └── index-strchr.patch ├── iproute2 │ ├── IN6_IS_ADDR_UNSPECIFIED.patch │ ├── Makefile.patch │ ├── build.sh │ ├── in_addr_t.patch │ ├── misc-arpd.c.patch │ ├── rindex.patch │ ├── sethostent.patch │ └── strdupa.patch ├── ipv6calc │ ├── build.sh │ ├── lib-Makefile.in.patch │ ├── tools-ipv6calc-create-update-ipset.sh.patch │ └── tools-ipv6calc-db-update.sh.in.patch ├── ipv6toolkit │ ├── GNUmakefile.patch │ ├── build.sh │ ├── tools-libipv6.h.patch │ ├── tools-scan6.c.patch │ └── tools-script6.patch ├── ircd-irc2 │ ├── build.sh │ ├── configure.patch │ ├── contrib-ircdwatch-ircdwatch.c.patch │ ├── contrib-mkpasswd-mkpasswd.c.patch │ ├── ircd-s_bsd.c.patch │ └── support-Makefile.in.patch ├── ired │ ├── LICENSE.patch │ └── build.sh ├── irssi │ └── build.sh ├── isync │ ├── build.sh │ └── src-socket.c.patch ├── iverilog │ ├── Makefile.in.patch │ ├── build.sh │ ├── driver-main.c.patch │ └── vvp-Makefile.in.patch ├── iwyu │ └── build.sh ├── jbig2dec │ ├── build.sh │ └── no-auto-configure.patch ├── jbig2enc │ ├── build.sh │ ├── configure.ac.patch │ └── src-Makefile.am.patch ├── jcal │ └── build.sh ├── jfrog-cli │ └── build.sh ├── jftui │ └── build.sh ├── jhead │ ├── build.sh │ └── makefile.patch ├── jigdo │ └── build.sh ├── jira-go │ └── build.sh ├── jo │ └── build.sh ├── joe │ ├── build.sh │ ├── do_not_build_utils.patch │ ├── fix_errno.patch │ └── no_getpwent.patch ├── jove │ ├── Makefile.patch │ ├── build.sh │ └── recover.c.patch ├── jp2a │ └── build.sh ├── jpegoptim │ └── build.sh ├── jq │ └── build.sh ├── jql │ └── build.sh ├── json-c │ ├── CMakeLists.txt.patch │ └── build.sh ├── json-glib │ ├── build.sh │ └── gir │ │ └── 1.8.0 │ │ └── Json-1.0.xml ├── jsoncpp │ └── build.sh ├── jump │ └── build.sh ├── jupp │ └── build.sh ├── jython │ └── build.sh ├── k2pdfopt │ ├── 0001-CMakeLists.txt-bugs.patch │ ├── 0002-CMakeLists.txt-no-mupdf.patch │ ├── 0003-CMakeLists.txt-no-detect-ghostscript-at-compile-time.patch │ ├── 0004-willuslib-CMakeLists.txt-typo.patch │ ├── 0005-willuslib-use-system-leptonica.patch │ ├── 0006-k2pdfopt.h-dst_ocr_visibility_flags-workaround.patch │ ├── 0007-k2pdfoptlib-k2ocr.c-conditionally-enable-tesseract-r.patch │ ├── 0008-willuslib-gslpolyfit.c-use-system-gsl.patch │ ├── 0009-CMakeLists.txt-use-system-gocr.patch │ ├── 0010-willuslib-use-system-djvu.patch │ ├── 0011-disable-tesseract.patch │ ├── build.sh │ ├── fix-hardcoded-paths.patch │ ├── fix-mupdf.patch │ ├── fix-termios-header-path.patch │ ├── jasper-fix.patch │ ├── k2pdfopt-2.53-leptonica-1.83.0.patch │ └── no-android.patch ├── k9s │ └── build.sh ├── kainjow-mustache │ └── build.sh ├── kak-lsp │ ├── build.sh │ └── src-text_edit.rs.patch ├── kakoune │ ├── build.sh │ ├── src-cs-path-compat.patch │ └── src-main.cc.patch ├── kcptun │ └── build.sh ├── keybase │ ├── build.sh │ └── go-libkb-env.go.patch ├── keychain │ └── build.sh ├── kibi │ ├── build.sh │ └── fsh-path-replacement.patch ├── kiwix-tools │ └── build.sh ├── knockd │ └── build.sh ├── kona │ ├── Makefile.patch │ ├── build.sh │ ├── getline_android.c.patch │ ├── src-0.c.patch │ ├── src-bswap.c.patch │ ├── src-getline.h.patch │ ├── src-kn.c.patch │ ├── src-p.c.patch │ └── src-v.h.patch ├── kotlin │ └── build.sh ├── krb5 │ ├── build.sh │ ├── config-files-kdc.conf.patch │ ├── lib-krb5-os-dnsglue.c.patch │ ├── netbsd_getpass.c │ └── plugins-kdb-db2.patch ├── kubectl │ └── build.sh ├── kubelogin │ └── build.sh ├── ladspa-sdk │ ├── build.sh │ └── src-Makefile.patch ├── lastpass-cli │ ├── build.sh │ └── termux-api-clipboard.patch ├── lazygit │ └── build.sh ├── lazyread │ ├── build.sh │ ├── lessopen-env-warning.patch │ └── no-link.patch ├── lcal │ ├── COPYRIGHT.moonphase │ └── build.sh ├── ldc │ ├── build.sh │ ├── ldc-readme.patch │ └── tests │ │ └── hello_world.sh ├── ldd │ ├── build.sh │ └── ldd.in ├── ldns │ ├── build.sh │ └── fix-hardcoded-paths.patch ├── ledger │ ├── CMakeLists.diff │ ├── build.sh │ └── src-report.h.patch ├── leptonica │ └── build.sh ├── less │ ├── build.sh │ ├── configure.patch │ └── fix-negative-search.patch ├── lesspipe │ ├── build.sh │ └── lesspipe.sh.patch ├── leveldb │ └── build.sh ├── lexbor │ └── build.sh ├── lexter │ ├── acinclude.m4.patch │ ├── build.sh │ └── configure.in.patch ├── lf │ └── build.sh ├── lfortran │ ├── CMakeLists.txt.diff │ ├── CMakeLists.txt.patch.beforehostbuild │ ├── build.sh │ ├── llvm16.patch │ ├── src-bin-lfortran.cpp.patch │ ├── src-lfortran-CMakeLists.txt.patch │ └── src-libasr-runtime-lfortran_intrinsics.h.patch ├── lftp │ ├── build.sh │ ├── lftp_ssl.cc.patch │ ├── src-Filter.cc.patch │ ├── src-PtyShell.cc.patch │ └── src-SysCmdJob.cc.patch ├── lgogdownloader │ └── build.sh ├── lhasa │ └── build.sh ├── liba52 │ ├── a52dec.subpackage.sh │ └── build.sh ├── libacl │ └── build.sh ├── libaml │ ├── 0001-no-pthread-cancel.patch │ └── build.sh ├── libandroid-complex-math │ ├── LICENSE │ ├── build.sh │ └── upstream-netbsd │ │ └── lib │ │ └── libm │ │ ├── complex │ │ ├── cacoshl.c │ │ ├── cacosl.c │ │ ├── casinhl.c │ │ ├── casinl.c │ │ ├── catanhl.c │ │ ├── catanl.c │ │ ├── ccoshl.c │ │ ├── ccosl.c │ │ ├── cephes_subrl.c │ │ ├── cephes_subrl.h │ │ ├── cexpl.c │ │ ├── clog.c │ │ ├── clogf.c │ │ ├── clogl.c │ │ ├── cpow.c │ │ ├── cpowf.c │ │ ├── cpowl.c │ │ ├── csinhl.c │ │ ├── csinl.c │ │ ├── ctanhl.c │ │ └── ctanl.c │ │ └── src │ │ └── namespace.h ├── libandroid-execinfo │ ├── LICENSE │ ├── build.sh │ ├── execinfo.c │ └── execinfo.h ├── libandroid-glob │ ├── LICENSE │ ├── build.sh │ ├── glob.c │ └── glob.h ├── libandroid-posix-semaphore │ ├── LICENSE │ ├── build.sh │ └── semaphore.c ├── libandroid-shmem │ └── build.sh ├── libandroid-spawn │ ├── LICENSE │ ├── build.sh │ ├── posix_spawn.cpp │ └── posix_spawn.h ├── libandroid-stub │ └── build.sh ├── libandroid-support │ └── build.sh ├── libandroid-sysv-semaphore │ ├── LICENSE │ ├── build.sh │ ├── sys_sem.c │ └── sys_sem.h ├── libandroid-wordexp │ ├── build.sh │ ├── wordexp.c │ └── wordexp.h ├── libao │ ├── ao_private.h.patch │ ├── ao_pulse.c.patch │ ├── build.sh │ ├── configure.ac.patch │ └── libao-1.2.2-fix-missing-nanosleep-decl.patch ├── libaom │ ├── aom-tools.subpackage.sh │ ├── arm_cpudetect-always-neon.patch │ └── build.sh ├── libapt-pkg-perl │ └── build.sh ├── libarchive │ ├── archive.h.patch │ ├── archive_entry.h.patch │ ├── archive_string.c.patch │ ├── archive_util.c.patch │ ├── archive_write_disk_posix.c.patch │ ├── archive_write_set_format_zip.c.patch │ ├── bsdtar.subpackage.sh │ ├── bsdunzip_platform.h.patch │ └── build.sh ├── libarrow-cpp │ ├── build.sh │ ├── cpp-cmake_modules-Findlz4Alt.cmake.patch │ └── cpp-src-arrow-util-io_util.cc.patch ├── libasio │ └── build.sh ├── libass │ └── build.sh ├── libassuan │ └── build.sh ├── libatomic-ops │ └── build.sh ├── libbcprov-java │ └── build.sh ├── libblosc │ ├── 0001-fix-posix-memalign.patch │ ├── bench-bench.c.patch │ ├── blosc.pc.in.patch │ └── build.sh ├── libbluray │ ├── build.sh │ └── libbluray-utils.subpackage.sh ├── libbs2b │ ├── build.sh │ └── configure.ac.patch ├── libbsd │ ├── __progname.patch │ ├── build.sh │ ├── endian.h.patch │ ├── funopen.c.patch │ ├── local-elf.h.patch │ ├── nlist.c.patch │ └── no-need_transparent_libmd.patch ├── libbullet │ └── build.sh ├── libburn │ └── build.sh ├── libbz2 │ ├── build.sh │ ├── bzdiff.patch │ ├── bzip2.subpackage.sh │ ├── cross_compile.patch │ └── shared_library.patch ├── libc++ │ └── build.sh ├── libc++utilities │ ├── build.sh │ └── no-android.patch ├── libc-client │ ├── 1006_openssl1.1_autoverify.patch │ ├── Makefile.patch │ ├── build.sh │ ├── c-client-2007f-implicit-declaration-fix.patch │ ├── c-client-2007f-scandir-callback-types.patch │ ├── src-c-client-c-client.h.patch │ ├── src-c-client-rfc822.c.patch │ ├── src-osdep-unix-Makefile.patch │ ├── src-osdep-unix-ckp_psx.c.patch │ ├── src-osdep-unix-env_unix.c.patch │ └── src-osdep-unix-os_slx.c.patch ├── libcaca │ └── build.sh ├── libcairo │ ├── build.sh │ ├── cairo-script-operators.c.patch │ ├── fdr.c.patch │ └── meson.build.patch ├── libcairomm-1.0 │ └── build.sh ├── libcairomm-1.16 │ └── build.sh ├── libcap-ng │ └── build.sh ├── libcap │ ├── Makefile.patch │ ├── build.sh │ ├── libcap-makefile.patch │ └── progs-capsh.c.patch ├── libccd │ ├── build.sh │ └── src-CMakeLists.txt.patch ├── libcddb │ ├── build.sh │ └── lib-cddb_net.c.patch ├── libcdk │ └── build.sh ├── libcec │ ├── build.sh │ └── cec-client.subpackage.sh ├── libceres-solver │ └── build.sh ├── libchipmunk │ ├── build.sh │ └── fix-sysctl-dir.patch ├── libcln │ ├── build.sh │ ├── revert_configure_tests.patch │ ├── src-base-low-cl_low_div.cc.patch │ └── src-base-low-cl_low_mul.cc.patch ├── libcloog │ └── build.sh ├── libcoap │ └── build.sh ├── libcoinor-osi │ └── build.sh ├── libcoinor-utils │ ├── build.sh │ └── no-register.patch ├── libcommons-lang3-java │ └── build.sh ├── libconfig │ └── build.sh ├── libconfuse │ └── build.sh ├── libcpufeatures │ └── build.sh ├── libcroco │ └── build.sh ├── libcrypt │ ├── LICENSE │ ├── build.sh │ ├── crypt.h │ └── crypt3.c ├── libcue │ └── build.sh ├── libcunit │ ├── build.sh │ └── doc-makefile-am.patch ├── libcurl │ ├── build.sh │ └── curl.subpackage.sh ├── libczmq │ └── build.sh ├── libdaemon │ └── build.sh ├── libdart │ ├── CMakeLists.txt.patch │ ├── build.sh │ └── cmake-dart.pc.in.patch ├── libdav1d │ └── build.sh ├── libdb │ ├── build.sh │ ├── db.subpackage.sh │ ├── fix-tmpdir.patch │ └── no-install-docs.patch ├── libde265 │ ├── build.sh │ └── only_export_decoder_api.patch ├── libdeflate │ └── build.sh ├── libdevil │ ├── DevIL-src-IL-src-il_jp2.cpp.patch │ └── build.sh ├── libdispatch │ ├── build.sh │ └── libblocksruntime.subpackage.sh ├── libdmtx │ └── build.sh ├── libdrm │ ├── LICENSE │ └── build.sh ├── libduckdb │ ├── build.sh │ ├── duckdb.subpackage.sh │ └── tools-shell-shell.c.patch ├── libduktape │ ├── build.sh │ └── duktape.subpackage.sh ├── libdvbcsa │ └── build.sh ├── libdvbpsi │ └── build.sh ├── libdvdnav │ └── build.sh ├── libdvdread │ └── build.sh ├── libebml │ └── build.sh ├── libebur128 │ └── build.sh ├── libedit │ ├── build.sh │ ├── src-readline.c.patch │ └── src-vi.c.patch ├── libelf │ ├── aligned_alloc.c │ ├── asm_align.c.patch │ ├── build.sh │ ├── configure-ac.patch │ ├── debuginfod-client.c.patch │ ├── debuginfod.cxx.patch │ ├── elf_getarsym.c.patch │ ├── elfutils.subpackage.sh │ ├── gelf_st_visibility.patch │ ├── lib-color.c.patch │ ├── libasm-static.subpackage.sh │ ├── libasm.subpackage.sh │ ├── libdebuginfod.subpackage.sh │ ├── libdw-static.subpackage.sh │ ├── libdw.subpackage.sh │ ├── libelfmakefile.am.patch │ ├── obstack.h │ ├── qsort_r.h │ ├── ranlib.c.patch │ ├── search │ │ ├── hcreate.c │ │ ├── hcreate_r.c │ │ ├── hdestroy_r.c │ │ ├── hsearch.h │ │ ├── hsearch_r.c │ │ └── search.h │ ├── src-ar-search.patch │ ├── src-makefile-search.patch │ ├── stdio_ext.h │ ├── strings.c.patch │ ├── strip.c.patch │ └── system.h.patch ├── libenet │ └── build.sh ├── libev │ ├── Makefile.in.patch │ └── build.sh ├── libevent │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── evdns.c.patch │ ├── evutil.c.patch │ └── evutil_rand.c.patch ├── libexif │ └── build.sh ├── libexpat │ └── build.sh ├── libfann │ └── build.sh ├── libfcl │ └── build.sh ├── libfdk-aac │ ├── build.sh │ └── libSBRdec-lpp_tran.cpp.patch ├── libffi │ ├── build.sh │ └── libffi-3.4.4-open_temp_exec_file.patch ├── libfinalcut │ ├── build.sh │ ├── examples-Makefile.am.patch │ ├── examples-string-operations.cpp.patch │ ├── final-font-unicodemap.h.patch │ ├── final-output-tty-fterm.cpp.patch │ ├── final-output-tty-ftermlinux.h.patch │ ├── final-util-fstring.h.patch │ └── final-util-fsystemimpl.h.patch ├── libfixposix │ ├── build.sh │ ├── src-lib-stdlib.c.patch │ └── src-lib-strerror.c.patch ├── libflac │ ├── build.sh │ └── flac.subpackage.sh ├── libflann │ ├── build.sh │ └── pkgconfig.patch ├── libforestdb │ ├── build.sh │ ├── forestdb-dump.subpackage.sh │ └── src-forestdb_endian.h.patch ├── libfreexl │ └── build.sh ├── libftxui │ └── build.sh ├── libgc │ └── build.sh ├── libgcrypt │ ├── build.sh │ ├── cipher-keccak.c.patch │ └── fix-hardcoded-paths.patch ├── libgd │ └── build.sh ├── libgee │ └── build.sh ├── libgeos │ └── build.sh ├── libgeotiff │ └── build.sh ├── libgf2x │ └── build.sh ├── libgfshare │ └── build.sh ├── libgit2 │ ├── build.sh │ └── fix-etc-dir-path.patch ├── libglibmm-2.4 │ └── build.sh ├── libglibmm-2.68 │ └── build.sh ├── libglvnd │ ├── LICENSE │ ├── build.sh │ ├── egl-not-android.diff │ └── libglvnd-dev.subpackage.sh ├── libgmime │ ├── build.sh │ ├── gir │ │ └── GMime-3.0.xml │ ├── iconv-detect.h │ └── m4-vapigen.m4.patch ├── libgmp │ └── build.sh ├── libgnt │ └── build.sh ├── libgnustep-base │ ├── Source-NSPathUtilities.m.patch │ ├── Tools-gdomap.c.patch │ ├── build.sh │ ├── configure.patch │ └── gnustep-base-1.29.0-libxml2-2.11.patch ├── libgnutls │ ├── build.sh │ ├── gl-stdio-impl.h.patch │ ├── gnutls.subpackage.sh │ └── src-gl-stdio-impl.h.patch ├── libgpg-error │ ├── atexit.patch │ ├── build.sh │ ├── lock-obj-pub.aarch64-unknown-linux-android.h │ └── src-Makefile.am.patch ├── libgraphite │ ├── CMakeLists.txt.patch │ ├── build.sh │ └── src-CMakeLists.txt.patch ├── libgrpc │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── log_android.cc.patch │ ├── src-core-lib-gpr-tmpfile_posix.cc.patch │ ├── src-core-lib-security-security_connector-load_system_roots_supported.cc.patch │ └── src-core-lib-security-security_connector-ssl_utils.cc.patch ├── libgsasl │ ├── build.sh │ ├── gl-stdio-impl.h.patch │ └── gsasl.subpackage.sh ├── libgsf │ ├── build.sh │ ├── configure.patch │ ├── gir │ │ └── Gsf-1.xml │ ├── gsf-tools.subpackage.sh │ └── libxml2.patch ├── libgxps │ └── build.sh ├── libhdf5 │ ├── CMakeInstallation.cmake.patch │ ├── aarch64 │ │ ├── H5Tinit.c │ │ ├── H5lib_settings.c │ │ └── TryRunResults_out.cmake │ ├── arm │ │ ├── CMakeCache.txt │ │ ├── H5Tinit.c │ │ ├── H5lib_settings.c │ │ └── TryRunResults_out.cmake │ ├── build.sh │ ├── i686 │ │ ├── CMakeCache.txt.hdf5.i686 │ │ ├── H5Tinit.c │ │ ├── H5lib_settings.c │ │ └── TryRunResults_out.cmake │ └── x86_64 │ │ ├── CMakeCache.txt.hdf5.x86_64 │ │ ├── H5Tinit.c │ │ ├── H5lib_settings.c │ │ └── TryRunResults_out.cmake ├── libheif │ ├── build.sh │ └── libheif-progs.subpackage.sh ├── libhiredis │ └── build.sh ├── libhtmlcxx │ ├── build.sh │ ├── css-Makefile.am.patch │ └── html-Makefile.am.patch ├── libhyphen │ └── build.sh ├── libical │ └── build.sh ├── libice │ ├── build.sh │ └── src-authutil.c.patch ├── libiconv │ ├── build.sh │ └── iconv.subpackage.sh ├── libicu │ ├── build.sh │ ├── icu-devtools.subpackage.sh │ └── source-common-putil.cpp.patch ├── libid3tag │ └── build.sh ├── libidn │ └── build.sh ├── libidn2 │ └── build.sh ├── libimagequant │ └── build.sh ├── libimobiledevice-glue │ └── build.sh ├── libimobiledevice │ ├── build.sh │ └── tools-idevicedevmodectl.c.patch ├── libimtui │ ├── build.sh │ └── hnterm.subpackage.sh ├── libinih │ └── build.sh ├── libiniparser │ ├── CVE-2023-33461.patch │ ├── Makefile.patch │ └── build.sh ├── libiodbc │ ├── build.sh │ ├── include-sqlext.h.patch │ ├── iodbcinst-SQLInstallDriver.c.patch │ └── iodbcinst-SQLInstallDriverEx.c.patch ├── libisl │ └── build.sh ├── libisoburn │ ├── build.sh │ └── xorriso-parse_exec.c.patch ├── libisofs │ └── build.sh ├── libjansi │ ├── build.sh │ └── src-main-native-jansi_structs.c.patch ├── libjansson │ └── build.sh ├── libjasper │ ├── CMakeLists.txt.patch │ ├── build.sh │ └── libjasper-utils.subpackage.sh ├── libjpeg-turbo │ ├── build.sh │ └── libjpeg-turbo-progs.subpackage.sh ├── libjxl │ ├── build.sh │ ├── cmake_fixes.patch │ ├── fix-pkgconfig-file.patch │ ├── libjxl-progs.subpackage.sh │ └── use-libandroid-glob-and-spawn.patch ├── libkiwix │ ├── build.sh │ ├── kiwix.pc.in.patch │ └── src-tools-pathTools.cpp.patch ├── libknot │ ├── build.sh │ ├── fix-hardcoded-paths.patch │ ├── knot-utils.subpackage.sh │ └── pthread_cancel.patch ├── libkokkos │ └── build.sh ├── libksba │ └── build.sh ├── liblightning │ └── build.sh ├── libliquid-dsp │ ├── build.sh │ ├── configure.ac.patch │ └── makefile.in.patch ├── libllvm │ ├── Add-stubs-and-headers-for-nl_types-APIs.patch │ ├── build.sh │ ├── clang-include-clang-Driver-Options.td.patch │ ├── clang-lib-Driver-ToolChain.cpp.patch │ ├── clang-lib-Driver-ToolChains-Gnu.cpp.patch │ ├── clang-lib-Driver-ToolChains-Linux.cpp.patch │ ├── clang.subpackage.sh │ ├── compiler-rt-CMakeLists.txt.patch │ ├── compiler-rt-lib-builtins-CMakeLists.txt.patch │ ├── cxx-libm.patch │ ├── libcompiler-rt.subpackage.sh │ ├── libpolly.subpackage.sh │ ├── lld-ELF-Relocations.cpp.patch │ ├── lld.subpackage.sh │ ├── lldb-include-lldb-Host-Editline.h.patch │ ├── lldb-source-Host-android-HostInfoAndroid.cpp.patch │ ├── lldb-source-Host-posix-ProcessLauncherPosixFork.cpp.patch │ ├── lldb-source-Plugins-Platform-Android-AdbClient.cpp.patch │ ├── lldb-source-Plugins-Process-Linux-NativeProcessLinux.cpp.patch │ ├── lldb-source-Utility-ArchSpec.cpp.patch │ ├── lldb.subpackage.sh │ ├── llvm-config.in │ ├── llvm-include-llvm-ADT-SmallVector.h.patch │ ├── llvm-lib-Support-Unix-Path.inc.patch │ ├── llvm-tools-llvm-rtdyld-llvm-rtdyld.cpp.patch │ ├── llvm-tools.subpackage.sh │ ├── llvm.subpackage.sh │ ├── llvmgold.subpackage.sh │ ├── mlir-lib-ExecutionEngine-CRunnerUtils.cpp.patch │ ├── mlir.subpackage.sh │ └── openmp-config-ix-m32.patch ├── liblmdb │ ├── Makefile.patch │ └── build.sh ├── liblo │ ├── build.sh │ └── src-server.c.patch ├── liblog4c │ ├── build.sh │ ├── src-sd-malloc.h.patch │ └── src-sd-stack.h.patch ├── liblog4cxx │ ├── CMakeLists.txt.patch │ └── build.sh ├── liblqr │ └── build.sh ├── liblrdf │ └── build.sh ├── liblua51 │ ├── Makefile.patch │ ├── build.sh │ ├── lua-5.1.5-CVE-2014-5461.patch │ ├── lua.pc.in │ ├── lua51.subpackage.sh │ ├── src-Makefile.patch │ └── src-luaconf.h.patch ├── liblua52 │ ├── LICENSE.patch │ ├── build.sh │ ├── lua-5.2.4_Makefile.patch │ ├── lua-5.2.4_src_Makefile.patch │ ├── lua-5.2.4_src_loslib.c.patch │ ├── lua-5.2.4_src_luaconf.h.patch │ ├── lua.pc.in │ └── lua52.subpackage.sh ├── liblua53 │ ├── LICENSE.patch │ ├── Makefile.patch │ ├── build.sh │ ├── fix-lua_tmpnametemplate.patch │ ├── lua.pc.in │ ├── lua53.subpackage.sh │ ├── src-Makefile.patch │ ├── src-loslib.c.patch │ └── src-luaconf.h.patch ├── liblua54 │ ├── LICENSE.patch │ ├── Makefile.patch │ ├── build.sh │ ├── lua.pc.in │ ├── lua54.subpackage.sh │ ├── src-Makefile.patch │ ├── src-loslib.c.patch │ └── src-luaconf.h.patch ├── libluajit │ ├── Makefile.patch │ ├── build.sh │ ├── etc-luajit.pc.patch │ ├── luajit.subpackage.sh │ ├── src-Makefile.patch │ └── tmpdir-fix.patch ├── liblz4 │ ├── build.sh │ └── lz4.subpackage.sh ├── liblzma │ ├── build.sh │ ├── configure.patch │ └── xz-utils.subpackage.sh ├── liblzo │ ├── build.sh │ └── include-lzo-lzodefs.h.patch ├── libmaa │ └── build.sh ├── libmad │ └── build.sh ├── libmariadbcpp │ ├── build.sh │ ├── libmariadb-include-ma_global.h.patch │ └── src-CallableParameterMetaData.cpp.patch ├── libmatio │ └── build.sh ├── libmatroska │ └── build.sh ├── libmaxminddb │ ├── build.sh │ └── libmaxminddb-tools.subpackage.sh ├── libmcrypt │ ├── build.sh │ └── lib-Makefile.in.patch ├── libmd │ └── build.sh ├── libmdbx │ ├── build.sh │ └── src-osal.c.patch ├── libmediainfo │ └── build.sh ├── libmesode │ └── build.sh ├── libmhash │ └── build.sh ├── libmicrohttpd │ └── build.sh ├── libminizip-ng │ └── build.sh ├── libminizip │ └── build.sh ├── libmnl │ └── build.sh ├── libmodplug │ ├── build.sh │ └── src-load_pat.cpp.patch ├── libmosquitto │ ├── build.sh │ ├── config.patch │ ├── mosquitto.subpackage.sh │ └── tmp-dir.patch ├── libmp3lame │ ├── build.sh │ └── lame.subpackage.sh ├── libmp3splt │ └── build.sh ├── libmpc │ └── build.sh ├── libmpdclient │ └── build.sh ├── libmpfr │ └── build.sh ├── libmsgpack-cxx │ └── build.sh ├── libmsgpack │ └── build.sh ├── libmuparser │ └── build.sh ├── libmusicbrainz │ ├── build.sh │ └── libmusicbrainz-5.1.0-wildcards.patch.beforehostbuild ├── libmypaint │ ├── build.sh │ └── gir │ │ └── 1.6.1 │ │ └── MyPaint-1.6.xml ├── libnats-c │ ├── CMakeLists.txt.patch │ ├── build.sh │ └── src-libnats.pc.in.patch ├── libncnn │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── examples_CMakeLists.txt.patch │ ├── python_CMakeLists.txt.patch │ ├── src_platform.h.in.patch │ └── tools_CMakeLists.txt.patch ├── libneon │ └── build.sh ├── libnet │ └── build.sh ├── libnettle │ ├── build.sh │ ├── configure.patch │ └── nettle.subpackage.sh ├── libnewt │ ├── build.sh │ └── whiptail.subpackage.sh ├── libnfc │ └── build.sh ├── libnfs │ ├── add-timeh.patch │ └── build.sh ├── libnftnl │ └── build.sh ├── libnghttp2 │ └── build.sh ├── libnl │ ├── build.sh │ ├── getsubopt.c │ ├── getsubopt.h │ ├── getsubopt.patch │ ├── include-linux-private-linux-in.h.patch │ ├── libnl-cli-static.subpackage.sh │ ├── libnl-cli.subpackage.sh │ ├── nf-log.c.patch │ ├── nf-monitor.c.patch │ ├── nf-queue.c.patch │ ├── nl-monitor.c.patch │ └── socket.h.patch ├── libnova │ └── build.sh ├── libnpth │ └── build.sh ├── libnspr │ ├── build.sh │ └── configure.patch ├── libnss │ ├── build.sh │ ├── coreconf-rules.mk.patch │ ├── lib-freebl-stubs.c.patch │ └── nss-utils.subpackage.sh ├── libntl │ └── build.sh ├── libobjc2 │ ├── build.sh │ └── libobjc2-2.1-eh_trampoline.patch ├── libode │ ├── CMakeLists.patch │ └── build.sh ├── libogg │ └── build.sh ├── liboggz │ └── build.sh ├── libolm │ └── build.sh ├── libopenblas │ ├── blas-openblas.subpackage.sh │ └── build.sh ├── libopencc │ ├── CMakeLists.txt.patch │ ├── build.sh │ └── opencc-tools.subpackage.sh ├── libopencore-amr │ └── build.sh ├── libopenfec │ └── build.sh ├── libopenmpt │ └── build.sh ├── libopus │ └── build.sh ├── libopusenc │ └── build.sh ├── liborc │ └── build.sh ├── libosl │ └── build.sh ├── libosmium │ └── build.sh ├── libosmpbf │ ├── CMakeLists.txt.patch │ └── build.sh ├── libotr │ ├── build.sh │ └── configure.patch ├── libowfat │ ├── GNUmakefile.patch │ ├── build.sh │ ├── entities.h │ ├── io-io_sendfile.c.patch │ ├── scan-scan_httpdate.c.patch │ ├── scan-scan_iso8601.c.patch │ ├── trypoll.c.patch │ ├── trysendfile.c.patch │ └── trysigio.c.patch ├── libp8-platform │ ├── build-shared-lib.patch │ └── build.sh ├── libpagmo │ └── build.sh ├── libpangomm-1.4 │ └── build.sh ├── libpangomm-2.48 │ └── build.sh ├── libpano13 │ └── build.sh ├── libpaper │ └── build.sh ├── libpcap │ ├── build.sh │ └── fix-path-etc-ethers.patch ├── libphysfs │ ├── build.sh │ └── no-android.patch ├── libpipeline │ └── build.sh ├── libpixman │ ├── build.sh │ └── pixman-arm.c.patch ├── libplacebo │ └── build.sh ├── libplist │ ├── build.sh │ └── configure.ac.patch ├── libpng │ └── build.sh ├── libpngwriter │ ├── CMakeLists.txt.patch │ └── build.sh ├── libpoco │ ├── Foundation-src-NamedEvent_UNIX.cpp.patch │ ├── Foundation-src-NamedMutex_UNIX.cpp.patch │ ├── Foundation-src-Path_UNIX.cpp.patch │ ├── Foundation-src-SharedMemory_POSIX.cpp.patch │ └── build.sh ├── libpopt │ ├── build.sh │ └── src-libpopt.vers.patch ├── libprotobuf-c │ ├── build.sh │ └── protobuf-c-1.4.1-protobuf-22.0.patch ├── libprotobuf │ ├── 0000-issue-18002.patch │ ├── build.sh │ ├── interface_link_libraries.sh │ ├── libutf8-range.subpackage.sh │ ├── protobuf-dev.subpackage.sh │ ├── protobuf.subpackage.sh │ └── src-google-protobuf-parse_context.cc.patch ├── libprotozero │ ├── build.sh │ └── tests_log.patch ├── libpsl │ └── build.sh ├── libpugixml │ └── build.sh ├── libqrencode │ └── build.sh ├── libraptor2 │ ├── build.sh │ └── raptor-2.0.16-libxml2-2.11.patch ├── libraqm │ └── build.sh ├── librasqal │ ├── build.sh │ ├── rasqal-0.9.33-configure-clang16.patch │ └── roqet.subpackage.sh ├── librav1e │ ├── build.sh │ └── rav1e.subpackage.sh ├── libre2 │ └── build.sh ├── libregexp-assemble-perl │ └── build.sh ├── libresolv-wrapper │ ├── build.sh │ ├── resolv_private.patch │ └── src-resolv_wrapper.c.patch ├── libretls │ ├── LICENSE │ └── build.sh ├── librime │ └── build.sh ├── librinutils │ ├── build.sh │ └── librinutils.pc.in.patch ├── librnnoise │ ├── build.sh │ └── src-rnn.c.patch ├── librocksdb │ ├── build.sh │ ├── env-fs_posix.cc.patch │ ├── rocksdb.pc.in.patch │ └── toku_time.h.patch ├── librsvg │ ├── build.sh │ ├── gir │ │ └── Rsvg-2.0.xml │ └── no-pixbuf-loaders-cache.patch ├── librsync │ ├── build.sh │ └── rdiff.subpackage.sh ├── librtmidi │ └── build.sh ├── librttopo │ └── build.sh ├── libsamplerate │ └── build.sh ├── libsasl │ ├── auth_getpwent.c.patch │ ├── build.sh │ ├── cyrus-sasl-2.1.28-fix-time.h-check-0001.patch │ └── cyrus-sasl-2.1.28-fix-time.h-check-0002.patch ├── libsass │ └── build.sh ├── libsearpc │ └── build.sh ├── libseat │ └── build.sh ├── libseccomp │ └── build.sh ├── libsecp256k1 │ └── build.sh ├── libsecret │ ├── build.sh │ └── gir │ │ ├── MockService-0.xml │ │ └── Secret-1.xml ├── libshout │ └── build.sh ├── libsigc++-2.0 │ └── build.sh ├── libsigc++-3.0 │ └── build.sh ├── libsignal-protocol-c │ └── build.sh ├── libsigsegv │ └── build.sh ├── libsixel │ ├── build.sh │ └── meson.build.patch ├── libslirp │ └── build.sh ├── libsm │ └── build.sh ├── libsnappy │ ├── CMakeLists.txt.patch │ ├── CMakeLists.txt.patch32 │ └── build.sh ├── libsndfile │ ├── build.sh │ └── tmpdir.patch ├── libsodium │ └── build.sh ├── libsoldout │ └── build.sh ├── libsophia │ ├── build.sh │ ├── makefile.patch │ └── sophia-std-ss_stdvfs.c.patch ├── libsoundtouch │ ├── build.sh │ ├── configure.ac.patch │ └── source-SoundTouchDLL-Makefile.am.patch ├── libsoup │ ├── build.sh │ └── gir │ │ └── 2.74.3 │ │ ├── Soup-2.4.xml │ │ └── SoupGNOME-2.4.xml ├── libsoup3 │ ├── build.sh │ └── gir │ │ └── 3.4.2 │ │ └── Soup-3.0.xml ├── libsoxr │ └── build.sh ├── libspatialindex │ └── build.sh ├── libspatialite │ └── build.sh ├── libspdlog │ └── build.sh ├── libspectre │ └── build.sh ├── libspeex │ ├── build.sh │ └── speex-utils.subpackage.sh ├── libspice-protocol │ └── build.sh ├── libspice-server │ ├── build.sh │ ├── disable-tools.patch │ ├── meson.build.patch │ ├── red-steam.cpp.patch │ └── stat-file.c.patch ├── libsqlite-tcl │ └── build.sh ├── libsqlite │ ├── build.sh │ ├── sqlite.subpackage.sh │ └── sqlite3.c.patch ├── libsrt │ ├── build.sh │ ├── scripts-srt.pc.in.patch │ └── srt-tools.subpackage.sh ├── libssh │ ├── build.sh │ ├── fix-paths.patch │ └── strerror_r.patch ├── libssh2 │ └── build.sh ├── libstemmer │ ├── GNUmakefile.patch │ ├── build.sh │ ├── snowball-stemmer-2.2.0-shared-library.patch │ └── stemwords.subpackage.sh ├── libstrophe │ └── build.sh ├── libt3config │ └── build.sh ├── libt3highlight │ └── build.sh ├── libt3key │ ├── Makefile.in.patch │ ├── build.sh │ └── config.pkg.patch ├── libt3widget │ ├── build.sh │ └── src-widgets-menu.cc.patch ├── libt3window │ ├── build.sh │ └── config.pkg.patch ├── libtalloc │ └── build.sh ├── libtasn1 │ ├── build.sh │ ├── no-native.exec.patch │ └── src-gl-stdio-impl.h.patch ├── libtbb │ └── build.sh ├── libtd │ └── build.sh ├── libtdb │ ├── build.sh │ ├── cross-answers.txt │ └── tdb-tools.subpackage.sh ├── libtermkey │ └── build.sh ├── libtheora │ └── build.sh ├── libthread-db │ ├── build.sh │ ├── src.sha256sum │ └── td_init.c ├── libtiff │ ├── build.sh │ └── libtiff-utils.subpackage.sh ├── libtiledb │ ├── build.sh │ ├── cmake-inputs-tiledb.pc.in.patch │ ├── tiledb-platform-cert_file.h.patch │ ├── tiledb-sm-array_schema-enumeration.h.patch32 │ └── tiledb-sm-fragment-fragment_metadata.cc.patch32 ├── libtins │ └── build.sh ├── libtinyxml │ ├── Makefile.patch │ ├── build.sh │ ├── tinyxml-2.6.1-entity.patch │ └── tinyxml-2.6.2-defineSTL.patch ├── libtinyxml2 │ └── build.sh ├── libtirpc │ ├── build.sh │ ├── no-getdomainname.patch │ ├── poll-definitions.patch │ └── types.patch ├── libtllist │ └── build.sh ├── libtomcrypt │ └── build.sh ├── libtommath │ └── build.sh ├── libtool │ ├── build.sh │ └── libltdl.subpackage.sh ├── libtorrent-rasterbar │ ├── build.sh │ └── pkg-config.cmake.in.patch ├── libtorrent │ ├── build.sh │ └── scripts-ax_check_zlib.m4.patch ├── libtpms │ └── build.sh ├── libtranscript │ ├── build.sh │ ├── config.pkg.patch │ └── mk-libtranscript.in.patch ├── libtree-ldd │ ├── build.sh │ └── libpath.patch ├── libtreesitter │ └── build.sh ├── libtsduck │ ├── Makefile.inc.patch │ ├── Makefile.inc.patch.beforehostbuild │ ├── build.sh │ ├── src-libtsduck-Makefile.patch │ ├── src-libtsduck-base-system-tsForkPipe.cpp.patch │ ├── src-libtsduck-base-system-tsSysUtils.h.patch │ ├── src-libtsduck-config-Makefile.patch │ ├── src-libtsduck-config-tsduck.pc.patch │ ├── src-libtsduck-python-Makefile.patch │ ├── src-tsplugins-Makefile.patch │ ├── src-tstools-Makefile.patch │ ├── tsduck-java.subpackage.sh │ ├── tsduck-plugins.subpackage.sh │ ├── tsduck-python.subpackage.sh │ └── tsduck-tools.subpackage.sh ├── libtvision │ ├── build.sh │ ├── include-tvision-compat-malloc-malloc.h.patch │ └── source-CMakeLists.txt.patch ├── libtwolame │ ├── build.sh │ └── twolame.subpackage.sh ├── libuber-h3 │ └── build.sh ├── libuchardet │ ├── build.sh │ └── uchardet.subpackage.sh ├── libucontext │ ├── Makefile.patch │ ├── bits.h.patch │ ├── build.sh │ └── test_libucontext_posix.c.patch ├── libudfread │ └── build.sh ├── libunbound │ ├── build.sh │ ├── libunbound-libunbound.c.patch │ ├── pyunbound.subpackage.sh │ ├── smallapp-unbound-host.c.patch │ └── unbound.subpackage.sh ├── libunibilium │ └── build.sh ├── libunistring │ ├── build.sh │ └── lib-stdio-impl.h.patch ├── libunqlite │ ├── build.sh │ ├── src-jx9_vfs.c.patch │ └── unqlite.c.patch ├── libupscaledb │ ├── build.sh │ ├── tools-ups_bench-datasource_string.h.patch │ └── upscaledb-tools.subpackage.sh ├── libusb │ └── build.sh ├── libusbmuxd │ └── build.sh ├── libusbredir │ └── build.sh ├── libuv │ ├── build.sh │ ├── src-unix-fs.c.patch │ └── src-unix-linux.c.patch ├── libv4l │ ├── build.sh │ ├── lib-libv4l2-Makefile.in.patch │ └── lib-libv4lconvert-control-libv4lcontrol.c.patch ├── libvbisam │ ├── build.sh │ ├── efgcvt-dbl-macros.h │ ├── efgcvt_r-template.c │ ├── libvbisam-Makefile.am.patch │ ├── libvbisam-isdecimal.c.patch │ └── vbisam.h.patch ├── libvidstab │ ├── build.sh │ └── transcode-CMakeLists.txt.patch ├── libvigra │ ├── build.sh │ └── src-impex-hdf5impex.cxx.patch ├── libvips │ └── build.sh ├── libvmaf │ └── build.sh ├── libvo-amrwbenc │ └── build.sh ├── libvorbis │ ├── build.sh │ └── configure.patch ├── libvpx │ ├── arm_cpudetect-always-neon.patch │ ├── build-make-configure.sh.patch │ ├── build.sh │ └── configure.patch ├── libvterm │ ├── Makefile.patch │ └── build.sh ├── libvxl │ ├── 0001-update-to-newer-dcmtk-API.patch │ └── build.sh ├── libwavpack │ ├── build.sh │ └── wavpack.subpackage.sh ├── libwayland-protocols │ └── build.sh ├── libwayland │ ├── build.sh │ ├── libwayland-cross-scanner.subpackage.sh │ ├── wayland-scanner-for-build.patch │ └── xdg-runtime-dir.patch ├── libwebp │ ├── build.sh │ └── libwebp-1.3.1-pkgconfig-files.patch ├── libwebrtc-audio-processing │ └── build.sh ├── libwebsockets │ └── build.sh ├── libwolfssl │ └── build.sh ├── libwren │ ├── build.sh │ └── projects-make.patch ├── libwslay │ └── build.sh ├── libwv │ ├── build.sh │ ├── wv-1.0.pc.in.patch │ ├── wv-tools.subpackage.sh │ ├── wvConfig.c.patch │ ├── wvSummary.c.patch │ └── wvparse.c.patch ├── libx11 │ ├── build.sh │ ├── src-CrGlCur.c.patch │ └── src-XlibInt.c.patch ├── libx264 │ ├── build.sh │ └── x264.subpackage.sh ├── libx265 │ ├── build.sh │ ├── source-CMakeLists.txt.patch │ ├── source-common-primitives.cpp.patch │ └── x265.subpackage.sh ├── libxapian │ ├── build.sh │ └── xapian-tools.subpackage.sh ├── libxau │ ├── build.sh │ └── libXau-1.0.8_AuLock.c.patch ├── libxcb │ ├── build.sh │ └── libxcb-1.12_src_xcb_util.c.patch ├── libxcfun │ └── build.sh ├── libxcursor │ ├── build.sh │ └── src-library.c.patch ├── libxdg-basedir │ ├── build.sh │ └── src-basedir.c.patch ├── libxdmcp │ └── build.sh ├── libxdrfile │ └── build.sh ├── libxext │ └── build.sh ├── libxfixes │ └── build.sh ├── libxft │ └── build.sh ├── libxi │ └── build.sh ├── libxls │ ├── build.sh │ └── xls2csv.subpackage.sh ├── libxlsxwriter │ ├── CMakeLists.txt.patch │ └── build.sh ├── libxml2 │ ├── build.sh │ ├── libxml2-python-static.subpackage.sh │ ├── libxml2-python.subpackage.sh │ ├── libxml2-utils.subpackage.sh │ └── revert-Make-xmlFreeNodeList-non-recursive.patch ├── libxrandr │ └── build.sh ├── libxrender │ └── build.sh ├── libxshmfence │ └── build.sh ├── libxslt │ ├── build.sh │ └── xsltproc.subpackage.sh ├── libxss │ └── build.sh ├── libxt │ ├── build.sh │ ├── include-x11-InitialI.h.patch │ └── src-Shell.c.patch ├── libxtst │ └── build.sh ├── libxv │ └── build.sh ├── libxxf86vm │ └── build.sh ├── libyaml-cpp │ └── build.sh ├── libyaml │ └── build.sh ├── libzen │ └── build.sh ├── libzim │ └── build.sh ├── libzimg │ └── build.sh ├── libzip │ └── build.sh ├── libzita-convolver │ ├── build.sh │ ├── source-Makefile.patch │ └── source-zita-convolver.cc.patch ├── libzix │ └── build.sh ├── libzmq │ └── build.sh ├── libzopfli │ ├── build.sh │ └── zopfli.subpackage.sh ├── libzxing-cpp │ └── build.sh ├── lighttpd │ ├── build.sh │ └── termux-config.patch ├── lilv │ ├── build.sh │ └── meson.build.patch ├── lilypond │ └── build.sh ├── links │ ├── build.sh │ ├── configure-clang16.patch │ └── fix-hardcoded-paths.patch ├── lipl │ └── build.sh ├── litespeedtest │ ├── Makefile.patch │ └── build.sh ├── littlecms │ ├── build.sh │ └── littlecms-utils.subpackage.sh ├── llbuild │ ├── build.sh │ ├── lib-llvm-Support-CmakeLists.txt.patch │ └── products-llbuild-CMakeLists.txt.patch ├── llvm-mingw-w64-libcompiler-rt │ └── build.sh ├── llvm-mingw-w64-tools │ └── build.sh ├── llvm-mingw-w64-ucrt │ └── build.sh ├── llvm-mingw-w64 │ ├── 0001-append-sysroot.patch │ └── build.sh ├── lnav │ ├── Makefile.am.patch │ ├── build.sh │ ├── src-Makefile.am.patch │ ├── src-ghc-filesystem.hpp.patch │ ├── src-grep_proc.cc.patch │ ├── src-line_buffer.cc.patch │ ├── src-lnav.cc.patch │ ├── src-piper_proc.cc.patch │ └── sys_time.c ├── lnd │ └── build.sh ├── locustdb │ ├── Cargo.toml.patch │ └── build.sh ├── logo-ls │ └── build.sh ├── logrotate │ └── build.sh ├── loksh │ ├── build.sh │ ├── clock_monotonic.patch │ ├── fix-hardcoded-paths.patch │ ├── meson.build.patch │ ├── misc.c.patch │ ├── no-cs_path.patch │ └── time.patch ├── lowdown │ ├── build.sh │ └── compats.c.patch ├── lr │ ├── Makefile.patch │ └── build.sh ├── lrzip │ ├── build.sh │ └── fix-hardcoded-paths.patch ├── lrzsz │ ├── build.sh │ ├── configure.ac.patch │ ├── lib-long-options.c.patch │ ├── locale.patch │ ├── log.patch │ └── src-Makefile.am.patch ├── lsd │ └── build.sh ├── lsix │ └── build.sh ├── lsof │ ├── build.sh │ ├── main.c.patch │ └── misc.c.patch ├── ltrace │ ├── build.sh │ ├── ltrace-elf.c.patch │ └── sysdeps-linux-gnu-proc.c.patch ├── lua-language-server │ ├── android.diff │ ├── bee.lua-bee-net-endpoint.patch │ ├── bee.lua-project-common.patch │ ├── build.sh │ ├── loslib.patch │ ├── luaconf.patch │ └── make.lua.diff ├── lua-lgi │ ├── build.sh │ ├── lgi-0.9.2-lua-5.4.patch │ ├── lgi-Makefile.patch │ ├── lgi-core.c.patch │ ├── lgi-core.lua.patch │ └── lgi-override-cairo.lua.patch ├── lua-lpeg │ ├── LICENSE.patch │ ├── build.sh │ └── makefile.patch ├── luarocks │ ├── GNUmakefile.patch │ ├── build.sh │ ├── lua.lua.patch │ ├── src-luarocks-core-cfg.lua.patch │ ├── sysdetect-no-proc.patch │ └── unix-tools.lua.patch ├── luv │ └── build.sh ├── lux │ └── build.sh ├── lv2 │ └── build.sh ├── lychee │ ├── build.sh │ └── trust-dns-resolver.diff ├── lynx │ ├── build.sh │ ├── configure-clang16.patch │ ├── fix-paths.patch │ ├── lynx2.8.9dev.19_WWW_Library_Implementation_www_tcp.h.patch │ ├── lynx2.8.9dev.19_src_LYMain.c.patch │ └── lynx2.8.9dev.19_userdefs.h.patch ├── lzip │ ├── build.sh │ └── configure.patch ├── lzlib │ ├── build.sh │ └── configure.patch ├── lzop │ └── build.sh ├── m4 │ ├── build.sh │ ├── fix-paths.patch │ ├── lib-stdio-impl.h.patch │ ├── spawn.patch │ ├── src-m4.c.patch │ └── tests-strerror_r.c.patch ├── macchina │ └── build.sh ├── magic-wormhole-rs │ ├── build.sh │ └── remove-clipboard.patch ├── mailsync │ ├── acinclude-ac_with_md5.m4.patch │ └── build.sh ├── mailutils │ ├── build.sh │ ├── lib-Makefile.in.patch │ ├── lib-mailcap.c.patch │ ├── lib-manlock.c.patch │ ├── libmailutils-diag-bt.c.patch │ ├── lu.c.patch │ ├── mail-send.c.patch │ ├── mh-send.c.patch │ ├── mh-show.c.patch │ ├── paths.patch │ └── pwen.patch ├── make-guile │ ├── build.sh │ └── src-job.c.patch ├── make │ ├── build.sh │ └── src-job.c.patch ├── man │ ├── build.sh │ ├── configure.patch │ ├── fix-hardcoded-paths-in-manpages.patch │ ├── mandocdb.c.patch │ ├── read.c.patch │ ├── term_tag.c.patch │ └── term_tag.h.patch ├── mangal │ └── build.sh ├── manpages │ └── build.sh ├── mapserver │ └── build.sh ├── mariadb │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── client-CMakeLists.txt.patch │ ├── cmake-install_layout.cmake.patch │ ├── cmake-mariadb_connector_c.cmake.patch.beforehostbuild │ ├── configure.cmake.patch │ ├── etc-my.cnf.patch │ ├── i686-no-asm-goto.patch │ ├── libmariadb-mariadb_config-mariadb_config.c.patch │ ├── my_rdtsc.h.patch │ ├── plugin-disks-information_schema_disks.cc.patch │ ├── scripts-mysql_install_db.sh.patch │ └── support-files-mysql.server.sh.patch ├── marisa │ └── build.sh ├── markdown-flashcards │ └── build.sh ├── mathomatic │ ├── build.sh │ └── fix-paths.patch ├── matplotlib │ ├── build.sh │ └── mplsetup.cfg.patch ├── matterbridge │ └── build.sh ├── matterircd │ └── build.sh ├── mautrix-whatsapp │ └── build.sh ├── maven │ └── build.sh ├── maxcso │ ├── Makefile.patch │ └── build.sh ├── maxima │ ├── build.sh │ ├── doc-info-Makefile.am.patch │ └── ecl-src-gmp-acinclude.m4.patch.beforehostbuild ├── mazter │ └── build.sh ├── mbedtls │ ├── CMakeLists.txt.patch │ └── build.sh ├── mc │ ├── build.sh │ ├── configure-clang16.patch1 │ ├── configure.patch │ ├── filegui_magics.patch │ ├── filemanager_ext.c.patch │ ├── lib-shell.c.patch │ ├── lib-tty-key.c.patch │ ├── lib-utilunix.c.patch │ ├── lib-widget-input_complete.c.patch │ ├── src-filemanager-achown.c.patch │ ├── src-filemanager-chown.c.patch │ ├── src-filemanager-file.c.patch │ ├── src-usermenu.c.patch │ └── tmpdir_default.patch ├── mcfly │ ├── build.sh │ └── src-init.rs.patch ├── mdbook-auto-gen-summary │ ├── build.sh │ └── filetime-src-unix-utimes.rs.diff ├── mdbook-cat-prep │ ├── build.sh │ └── mdbook-src-renderer-html_handlebars-helpers-navigation.rs.diff ├── mdbook-epub │ ├── build.sh │ └── mdbook-src-renderer-html_handlebars-helpers-navigation.rs.diff ├── mdbook-graphviz │ └── build.sh ├── mdbook-katex │ └── build.sh ├── mdbook-linkcheck │ └── build.sh ├── mdbook-mermaid │ └── build.sh ├── mdbook-open-on-gh │ └── build.sh ├── mdbook-pikchr │ └── build.sh ├── mdbook-plantuml │ ├── 0001-update-mdbook.patch │ └── build.sh ├── mdbook-presentation-preprocessor │ └── build.sh ├── mdbook-svgbob │ └── build.sh ├── mdbook-svgbob2 │ └── build.sh ├── mdbook-tera │ ├── build.sh │ └── mdbook-src-renderer-html_handlebars-helpers-navigation.rs.diff ├── mdbook-toc │ └── build.sh ├── mdbook │ └── build.sh ├── mdbtools │ └── build.sh ├── mdns-scan │ ├── Makefile.patch │ └── build.sh ├── mdp │ └── build.sh ├── media-types │ └── build.sh ├── mediainfo │ └── build.sh ├── megacmd │ ├── build.sh │ ├── fix-build-with-ffmpeg-5.0.patch │ ├── fix-hardcoded-paths.patch │ ├── no-android.patch │ ├── sdk-include-megaapi_impl.h.patch │ └── src-megacmdcommonutils.h.patch ├── megatools │ ├── build.sh │ └── lib-mega.c.patch ├── memcached │ ├── Makefile.am.patch │ ├── build.sh │ ├── configure.patch │ ├── crc32c.c.patch │ ├── getsubopt.c │ ├── getsubopt.h │ ├── memcached.c.patch │ ├── memcached.h.patch │ ├── restart.c.patch │ └── storage.c.patch ├── mercury │ ├── build.sh │ └── configure.patch ├── mesa │ ├── 0001-disable-multithreading-for-llvmpipe.patch │ ├── 0002-fix-for-getprogname.patch │ ├── 0003-fix-for-anon-file.patch │ ├── 0004-do-not-check-xlocale.patch │ ├── 0005-virgl-socket-path.patch │ ├── 0006-wsi-no-pthread_cancel.patch │ ├── 0007-fix-build-for-lld-17.patch │ ├── build.sh │ ├── cmake-wrapper.in │ ├── mesa-dev.subpackage.sh │ ├── mesa-vulkan-icd-freedreno.subpackage.sh │ ├── mesa-vulkan-icd-swrast.subpackage.sh │ └── osmesa.subpackage.sh ├── mfcuk │ └── build.sh ├── mg │ ├── GNUmakefile.patch │ └── build.sh ├── micro │ └── build.sh ├── microsocks │ ├── Makefile.patch │ └── build.sh ├── miller │ └── build.sh ├── mimetic │ ├── build.sh │ ├── c++17.patch │ ├── debian_patches_g++-11.patch │ ├── debian_patches_signed-char.patch │ └── disable_test_build.patch ├── minesweeper │ └── build.sh ├── minicom │ ├── build.sh │ ├── file.c.patch │ ├── port.h.patch │ └── wkeys.c.patch ├── minidlna │ ├── build.sh │ └── fix-hardcoded-paths.patch ├── miniflux │ ├── Makefile.patch │ └── build.sh ├── minimodem │ ├── build.sh │ └── src-fsk.c.patch ├── minio │ ├── build.sh │ └── cmd-net.go.patch ├── miniserve │ ├── build.sh │ └── socket2-0.5.2-src-sys-unix.rs.diff32 ├── minisign │ └── build.sh ├── miniupnpc │ ├── build.sh │ ├── miniupnpc-2.1_minissdpc.c.patch │ └── miniupnpc-2.1_miniupnpc.c.patch ├── minizinc │ └── build.sh ├── mkbootimg │ ├── Makefile.patch │ └── build.sh ├── mkp224o │ └── build.sh ├── mksh │ ├── WIFSTOPPED.patch │ ├── build.sh │ └── sh.h.patch ├── mktorrent │ ├── build.sh │ └── seekdir_telldir.patch ├── mlocate │ ├── build.sh │ ├── conf.c.patch │ ├── no_getid.patch │ ├── src-locate.c.patch │ └── updatedb.c.patch ├── mold │ ├── CMakeLists.txt.patch │ └── build.sh ├── monero │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── cmake-CheckTrezor.cmake.patch │ ├── external-CMakeLists.txt.patch │ └── translations-CMakeLists.txt.patch ├── monetdb │ ├── build.sh │ ├── clients-mapiclient-mclient.c.patch │ ├── clients-mapiclient-msqldump.c.patch │ ├── gdk-gdk_interprocess.c.patch │ ├── sql-backends-monet5-vaults-netcdf-CMakeLists.txt.patch │ └── tools-mserver-mserver5.c.patch ├── mono │ ├── build.sh │ ├── mono-libs.subpackage.sh │ └── mono-utils-mono-threads-posix.c.patch ├── monolith │ └── build.sh ├── moon-buggy │ ├── build.sh │ └── no_pw_gecos.patch ├── moreutils │ ├── build.sh │ ├── fix-compiler.patch │ └── no-install-strip_no-parallel.patch ├── moria │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── config.cpp.patch │ ├── struct.patch │ └── ui_io.cpp.patch ├── morse2ascii │ ├── Makefile.patch │ └── build.sh ├── mosh │ ├── build.sh │ ├── mosh-perl.subpackage.sh │ ├── mosh-server.cc.patch │ ├── mosh.cc │ └── mosh.pl.patch ├── most │ ├── Makefile.in.patch │ └── build.sh ├── mp3cat-go │ └── build.sh ├── mp3cat │ ├── Makefile.patch │ ├── build.sh │ └── fix-hardcoded-paths.patch ├── mp3gain │ └── build.sh ├── mp3splt │ └── build.sh ├── mp3wrap │ ├── build.sh │ └── wrap.c.patch ├── mpc │ ├── build.sh │ └── meson.build.patch ├── mpd │ ├── HybridDsdDecoderPlugin.cxx.patch │ ├── build.sh │ ├── doc-mpdconf.example.patch │ ├── registry.cxx.patch │ ├── src-decoder-plugins-FfmpegIo.hxx.patch │ ├── src-input-Error.cxx.patch │ ├── src-io-FileOutputStream.hxx.patch │ ├── src-lib-gcrypt-meson.build.patch │ ├── src-output-plugins-meson.build.patch │ ├── src-output-plugins-sles-SlesOutputPlugin.cxx.patch │ └── thread-Util.cxx.patch ├── mpdscribble │ ├── build.sh │ ├── mpdscribble.conf.patch │ └── src-ReadConfig.cxx.patch ├── mpg123 │ └── build.sh ├── mplayer │ ├── build.sh │ ├── command.c.patch │ ├── configure.patch │ ├── libmpcodecs-put_image.patch │ ├── libmpcodecs-ve_lavc.c.patch │ ├── libmpcodecs-vf_fixpts.c.patch │ ├── mplayer-1.4-ffmpeg-5.1.patch │ └── mplayer-1.5-ffmpeg-6.0.patch ├── mpv │ ├── build.sh │ └── mpv.conf ├── mruby │ ├── build.sh │ ├── build_config.patch │ ├── mrbgems-mruby-cmath-src-cmath.c.patch │ └── tasks-toolchains-android.rake.patch ├── msmtp │ ├── build.sh │ └── src-tools.c.patch ├── mtd-utils │ ├── build.sh │ ├── mkfs.jffs2.c.patch │ ├── tests-mtd-tests-flash_speed.c.patch │ └── ubi-utils-ubihealthd.c.patch ├── mtools │ ├── build.sh │ ├── no-privs.patch │ └── sysinc.patch ├── mu │ ├── build.sh │ ├── mu-mu-cmd-server.cc.patch │ └── mu4e-dont-bytecompile-meson.patch ├── muchsync │ └── build.sh ├── multitail │ ├── CMakeLists.txt.patch │ ├── Makefile.patch │ ├── build.sh │ ├── clipboard.c.patch │ ├── mt.c.patch │ ├── my_pty.c.patch │ ├── term.c.patch │ └── utils.c.patch ├── mupdf │ ├── Makefile.patch │ ├── Makethird.patch │ ├── build.sh │ ├── mupdf-tools.subpackage.sh │ └── source-tools-mudraw.c.patch ├── music-file-organizer │ └── build.sh ├── mutt │ ├── build.sh │ ├── doc-Muttrc.head.patch │ ├── getdomain.c.patch │ ├── init.c.patch │ ├── lib.c.patch │ ├── muttlib.c.patch │ └── smime_keys_path.patch ├── myman │ ├── Makefile.patch │ └── build.sh ├── mympd │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── dist-libmympdclient-include-config.h.patch │ ├── src-lib-http_client.c.patch │ └── src-mpd_client-autoconf.c.patch ├── mypaint-brushes │ └── build.sh ├── myrepos │ └── build.sh ├── n-t-roff-sc │ ├── Makefile.patch │ └── build.sh ├── n2n │ ├── Makefile.in.patch │ ├── build.sh │ └── src-edge_management.c.patch ├── nala │ ├── build.sh │ └── nala-__init__.py.patch ├── nali │ └── build.sh ├── nano │ ├── build.sh │ └── src-files.c.patch ├── nasm │ └── build.sh ├── natpmpc │ ├── Makefile.patch │ ├── build.sh │ └── natpmpc.c.patch ├── navi │ └── build.sh ├── navidrome │ ├── build.sh │ └── conf-configuration.go.patch ├── ncdc │ └── build.sh ├── ncdu │ └── build.sh ├── ncdu2 │ └── build.sh ├── ncftp │ ├── build.sh │ ├── fix-hardcoded-paths.patch │ └── ncftp-3.2.6-configure-clang16.patch ├── ncmpcpp │ ├── build.sh │ ├── config.patch │ ├── locale.patch │ ├── ncmpcpp.cpp.patch │ ├── screens-visualizer.cpp.patch │ └── settings.cpp.patch ├── ncompress │ └── build.sh ├── ncpamixer │ └── build.sh ├── ncspot │ └── build.sh ├── ncurses │ ├── build.sh │ ├── fix-paths.patch │ ├── ncurses-tinfo-lib_setup.c.patch │ ├── ncurses-tinfo-tinfo_driver.c.patch │ ├── ncurses-ui-libs-static.subpackage.sh │ ├── ncurses-ui-libs.subpackage.sh │ └── ncurses-utils.subpackage.sh ├── ndk-multilib │ ├── build.sh │ ├── ndk-multilib-native-static.subpackage.sh │ ├── ndk-multilib-native-stubs.subpackage.sh │ ├── postinst-alien.in │ └── postinst-header.in ├── ndk-sysroot │ ├── build.sh │ └── math-header.patch ├── ne │ └── build.sh ├── nelua │ ├── Makefile.patch │ └── build.sh ├── neofetch │ ├── 0001-fix-bash-5.2-column-cut-off-issue.patch │ └── build.sh ├── neomutt │ ├── autosetup-config.guess.patch │ ├── build.sh │ ├── file.c.patch │ ├── jimsh0.c.patch │ ├── muttlib.c.patch │ └── smime_keys.patch ├── neovim │ ├── build.sh │ ├── custom-bin │ │ └── cmake │ ├── runtime-CMakeLists.txt.patch │ ├── src-nvim-eval-funcs.c.patch │ ├── src-nvim-os-stdpaths.c.patch │ ├── src-nvim-po-CMakeLists.txt.patch │ └── sysinit.vim ├── nerdfix │ └── build.sh ├── net-snmp │ ├── agent-mibgroup-host-data_access-swinst_apt.c.patch │ ├── agent-mibgroup-host-data_access-swinst_pkginfo.c.patch │ ├── agent-mibgroup-host-hr_filesys.c.patch │ ├── agent-mibgroup-host-hr_swinst.c.patch │ ├── agent-mibgroup-host-hrh_filesys.c.patch │ ├── agent-mibgroup-if-mib-data_access-interface_linux.c.patch │ ├── agent-mibgroup-ip-mib-data_access-ipaddress_linux.c.patch │ ├── apps-encode_keychange.c.patch │ ├── apps-snmpnetstat-main.c.patch │ ├── build.sh │ ├── configure.d-config_project_types.patch │ ├── include-net-snmp-library-types.h.patch │ └── include-net-snmp-session_api.h.patch ├── net-tools │ ├── arp.c.patch │ ├── build.sh │ ├── ifconfig.c.patch │ ├── lib-inet.c.patch │ ├── lib-inet6.c.patch │ ├── lib-inet6_sr.c.patch │ ├── lib-pathnames.h.patch │ ├── nameif.c.patch │ ├── rarp.c.patch │ ├── slattach.c.patch │ └── unknown_state.patch ├── netcat-openbsd │ ├── build.sh │ └── debian-patches-port-to-linux-with-libbsd.patch ├── netcdf-c │ └── build.sh ├── nethack │ ├── build.sh │ ├── src-files.c.patch │ ├── sys-unix-Makefile.src.patch │ ├── sys-unix-Makefile.utl.patch │ ├── sys-unix-hints-linux.patch │ └── util-recover.c.patch ├── netpbm │ ├── GNUmakefile.patch │ ├── build.sh │ ├── buildtools-Makefile.patch │ ├── buildtools-installnetpbm.pl.patch │ ├── camera.c.patch │ ├── config.mk.in.patch │ ├── lib-Makefile.patch │ ├── netpbm-CAN-2005-2471.patch │ ├── netpbm-security-code.patch │ ├── netpbm-security-scripts.patch │ └── standardppmdfont.c ├── netsed │ └── build.sh ├── newsboat │ ├── Makefile.patch │ ├── bool-fix.patch │ ├── build.sh │ ├── fix-paths.patch │ ├── rust-libnewsboat-Cargo.toml.patch │ ├── rust-libnewsboat-src-cliargsparser.rs.patch │ ├── rust-libnewsboat-src-configpaths.rs.patch │ ├── rust-libnewsboat-src-filterparser.rs.patch │ ├── rust-libnewsboat-src-fslock.rs.patch │ ├── rust-libnewsboat-src-utils.rs.patch │ ├── rust-regex-rs-Cargo.toml.patch │ ├── rust-regex-rs-src-lib.rs.patch │ └── src-pbcontroller.cpp.patch ├── nginx │ ├── Android-crossfile.patch32 │ ├── Android-crossfile.patch64 │ ├── auto-unix.patch │ ├── build.sh │ ├── cross-compile-nginx.patch │ ├── nginx.c.patch │ ├── src-core-ngx_cycle.c.patch │ ├── src-core-ngx_file.c.patch │ └── src-event-modules-ngx_epoll_module.c.patch ├── ngircd │ ├── build.sh │ └── configure.patch ├── ngspice │ ├── build.sh │ ├── src-frontend-com_shell.c.patch │ ├── src-frontend-inp.c.patch │ ├── src-frontend-parser-complete.c.patch │ ├── src-frontend-plotting-gnuplot.c.patch │ ├── src-include-ngspice-defines.h.patch │ ├── src-include-ngspice-ipctiein.h.patch │ ├── src-tclspice.c.patch │ └── src-xspice-icm-makedefs.in.patch ├── nim │ ├── build.sh │ ├── config-nim.cfg.patch │ ├── osappdirs.nim.patch │ └── osproc.nim.patch ├── ninja │ ├── build.sh │ └── src-subprocess-posix.cc.patch ├── ninvaders │ └── build.sh ├── nlohmann-json │ └── build.sh ├── nlopt │ └── build.sh ├── nmap │ ├── build.sh │ ├── ncat-ncat_connect.c.patch │ ├── ncat-ncat_main.c.patch │ ├── ncat-ncat_posix.c.patch │ ├── ncat-sockaddr_u.h.patch │ ├── nmap-7.94-lua-5.4.patch │ ├── nmap-ncat.subpackage.sh │ ├── nmap_dns.cc.patch │ ├── nping-EchoServer.cc.patch │ ├── protocols.cc.patch │ └── services.cc.patch ├── nmh │ ├── build.sh │ └── no-hardlinks.patch ├── nmon │ ├── build.sh │ └── lmon.patch ├── nnn │ └── build.sh ├── no-more-secrets │ ├── Makefile.patch │ └── build.sh ├── nodejs-lts │ ├── avoid-ficlone-ioctl.patch │ ├── build.sh │ ├── configure.py.patch │ ├── deps-npm-lib-commands-install.js.patch │ ├── deps-npm-node_modules-cacache-lib-util-move-file.js.patch │ ├── deps-uv-src-unix-core.c.patch │ ├── deps-uv-src-unix-process.c.patch │ ├── deps-uv-uv.gyp.patch │ ├── deps-v8-src-flags-flag-definitions.h.patch │ ├── deps-v8-src-logging-log.cc.patch │ ├── deps-v8-src-trap-handler-trap-handler.h.patch │ ├── fix_multiple_definitions.patch │ ├── lib-child_process.js.patch │ ├── lib-internal-test_runner-test.js.patch │ ├── lib-os.js.patch │ ├── node.gyp.patch │ ├── src-debug_utils.cc.patch │ ├── src-getaddrinfo.patch │ ├── src-node_internals.h.patch │ ├── src-node_report.cc.patch │ ├── test-common-index.js │ ├── test-parallel-test-blob-buffer-too-large.js.patch │ ├── test-parallel-test-child-process-exec-env.js.patch │ ├── test-parallel-test-child-process-spawnsync-shell.js.patch │ ├── test-parallel-test-child-process-stdio-overlapped.js.patch │ ├── test-parallel-test-child-process-uid-gid.js.patch │ ├── test-parallel-test-dgram-bind-fd.js.patch │ ├── test-parallel-test-dgram-membership.js.patch │ ├── test-parallel-test-dgram-socket-buffer-size.js.patch │ ├── test-parallel-test-process-constants-noatime.js.patch │ ├── tools-gyp-pylib-gyp-generator-ninja.py.patch │ ├── tools-install.py.patch │ ├── tools-v8_gypfiles-toolchain.gypi.patch │ ├── tools-v8_gypfiles-v8.gyp.patch │ └── v8-clang-17.patch ├── nodejs │ ├── avoid-ficlone-ioctl.patch │ ├── build.sh │ ├── configure.py.patch │ ├── deps-npm-lib-commands-install.js.patch │ ├── deps-uv-src-unix-core.c.patch │ ├── deps-uv-src-unix-process.c.patch │ ├── deps-uv-uv.gyp.patch │ ├── deps-v8-src-flags-flag-definitions.h.patch │ ├── deps-v8-src-logging-log.cc.patch │ ├── deps-v8-src-trap-handler-trap-handler.h.patch │ ├── fix_multiple_definitions.patch │ ├── lib-child_process.js.patch │ ├── lib-os.js.patch │ ├── node.gyp.patch │ ├── src-debug_utils.cc.patch │ ├── src-getaddrinfo.patch │ ├── src-node_internals.h.patch │ ├── src-node_report.cc.patch │ ├── test-common-index.js │ ├── test-parallel-test-blob-buffer-too-large.js.patch │ ├── test-parallel-test-child-process-exec-env.js.patch │ ├── test-parallel-test-child-process-spawnsync-shell.js.patch │ ├── test-parallel-test-child-process-stdio-overlapped.js.patch │ ├── test-parallel-test-child-process-uid-gid.js.patch │ ├── test-parallel-test-cluster-bind-privileged-port.js.patch │ ├── test-parallel-test-cluster-shared-handle-bind-privileged-port.js.patch │ ├── test-parallel-test-dgram-bind-fd.js.patch │ ├── test-parallel-test-dgram-membership.js.patch │ ├── test-parallel-test-dgram-socket-buffer-size.js.patch │ ├── test-parallel-test-process-constants-noatime.js.patch │ ├── tools-v8_gypfiles-toolchain.gypi.patch │ └── tools-v8_gypfiles-v8.gyp.patch ├── notcurses │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── include-notcurses-ncport.h.patch │ ├── notcurses-data.subpackage.sh │ ├── notcurses-tools.subpackage.sh │ ├── pkgconfig.patch │ ├── pthread_cancel.patch │ └── src-lib-termdesc.h.patch ├── notmuch │ ├── Makefile.global.patch │ ├── build.sh │ ├── configure.patch │ └── lib-config.cc.patch ├── npush │ └── build.sh ├── nsis │ ├── SCons-Config-gnu.patch │ ├── Source-util.cpp.patch │ ├── Source-util.h.patch │ ├── build.sh │ ├── nsis-stubs.subpackage.sh │ └── nsis-stubs.tar.xz ├── nsnake │ ├── Makefile.patch │ ├── build.sh │ └── homepage.patch ├── nudoku │ └── build.sh ├── nushell │ └── build.sh ├── nwipe │ ├── build.sh │ ├── fix-hardcoded-paths.patch │ ├── pthread_cancel.patch │ └── src-nwipe.c.patch ├── nyancat │ ├── build.sh │ └── makefile.patch ├── nzbget │ ├── build.sh │ ├── nzbget-21.1-openssl-3.patch │ └── options.cpp.patch ├── o-editor │ └── build.sh ├── oathtool │ ├── build.sh │ ├── liboath-gl-stdio-impl.h.patch │ ├── liboath-gl-tests-strerror_r.c.patch │ ├── oath-toolkit-2.6.7-xmlsec-1.3.0.patch │ └── pskctool-gl-stdio-impl.h.patch ├── obfs4proxy │ └── build.sh ├── ocl-icd │ └── build.sh ├── ocrad │ ├── build.sh │ └── configure.patch ├── octomap │ └── build.sh ├── odt2txt │ ├── Makefile.patch │ └── build.sh ├── oidn │ ├── 0001-dummy-pthread-affinity.patch │ ├── 0002-fix-ambiguous-user.patch │ └── build.sh ├── okc-agents │ └── build.sh ├── ol │ └── build.sh ├── oleo │ ├── basic.h.patch │ ├── build.sh │ ├── configure.patch │ ├── dcgettext.c.patch │ ├── getdate.y.patch │ ├── global.h.patch │ ├── io-term.c.patch │ ├── io-term.h.patch │ ├── obstack.c.patch │ ├── plotter.c.patch │ ├── texi2html.in.patch │ └── xrdb.c.patch ├── onefetch │ ├── 0001-upstream-fix-libc-removing-unsafe-on-makedev.diff │ ├── 0002-rust-git-config-path.diff │ └── build.sh ├── oniguruma │ └── build.sh ├── oorexx │ ├── Makefile.in.patch │ ├── build.sh │ ├── common-platform-unix-SysLibrary.cpp.patch │ ├── configure.patch.beforehostbuild │ ├── extensions-platform-unix-rxunixsys-rxunixsys.cpp.patch │ ├── extensions-rexxutil-platform-unix-rexxutil.cpp.patch.beforehostbuild │ ├── interpreter-api-InterpreterAPI.cpp.patch.beforehostbuild │ ├── interpreter-api-ThreadContextStubs.cpp.patch.beforehostbuild │ ├── interpreter-platform-unix-ErrorMessages.cpp.patch.beforehostbuild │ ├── interpreter-platform-unix-ExternalFunctions.cpp.patch │ └── interpreter-platform-unix-SystemCommands.cpp.patch ├── open-adventure │ └── build.sh ├── openal-soft │ ├── alc-alconfig.cpp.patch │ └── build.sh ├── openbabel │ └── build.sh ├── opencl-clhpp │ └── build.sh ├── opencl-headers │ └── build.sh ├── opencl-vendor-driver │ ├── build.sh │ └── postinst.sh ├── opencolorio │ ├── build.sh │ ├── fix-i686-build.patch │ ├── share-cmake-utils-CheckSupportSSE2.cmake.patch │ └── share-ocio-setup_ocio.sh.in.patch ├── opencv │ ├── OpenCVConfig.cmake.in.patch │ ├── build.sh │ └── opencv-python.subpackage.sh ├── openethereum │ ├── build.sh │ ├── cmake_mod.sh │ ├── openethereum-utils.subpackage.sh │ └── parity-rocksdb-sys-0.5.6-mutex.diff ├── openexr │ └── build.sh ├── openfoam │ ├── 0001-Revert-COMP-remove-wmake-rules-for-ARM7-discontinued.patch │ ├── 0002-fix-build-with-cgal-5.5.patch │ ├── 0003-ambiguous-use-of-overloaded-operator-with-streampos.patch │ ├── build.sh │ ├── etc-bashrc.patch │ ├── etc-config.sh-CGAL.patch │ ├── etc-config.sh-mpi.patch │ ├── etc-config.sh-settings.patch │ ├── etc-config.sh-unset.patch │ ├── src-OSspecific-POSIX-Allwmake.patch │ ├── src-OSspecific-POSIX-POSIX.C.patch │ ├── src-OSspecific-POSIX-signals-sigFpe.C.patch │ ├── src-OpenFOAM-db-IOstreams-IOstreams-Istream.C.patch │ ├── src-OpenFOAM-primitives-ints-int64-int64.H.patch32 │ ├── wmake-makefiles-general.patch │ ├── wmake-rules.patch │ └── wmake-scripts-sysFunctions.patch ├── opengl │ └── build.sh ├── openjdk-17 │ ├── BUILD_LIBSPLASHSCREEN.patch │ ├── CVE-2022-21449.patch │ ├── CVE-2022-34169.patch │ ├── Fix-StackOverflowError-on-ARM.patch │ ├── Libfontmanager-Fix-for-library-dependency.patch │ ├── always-compile-with-pic.patch │ ├── build.sh │ ├── fix-bug-with-latest-clang-on-aarch64.patch │ ├── fix-bugs-in-File-getCanonicalPath.patch │ ├── fix-build-with-lld-17.patch │ ├── fix-hardcoded-paths.patch │ ├── iconv.patch │ ├── libraries.m4.patch │ ├── no-func-redef.patch │ ├── openjdk-17-source.subpackage.sh │ ├── openjdk-17-x.subpackage.sh │ ├── remove-sysThreadAvailableStackWithSlack-from-hotspot-symbols.patch │ ├── strerror_r.patch │ └── workaround-for-tagged-pointers.patch ├── openjdk-21 │ ├── 0001-fix-symbol-not-defined-error-with-lld-17.patch │ ├── BUILD_LIBSPLASHSCREEN.patch │ ├── Libfontmanager-Fix-for-library-dependency.patch │ ├── build.sh │ ├── fix-hardcoded-paths.patch │ ├── iconv.patch │ ├── libraries.m4.patch │ ├── no-func-redef.patch │ ├── openjdk-21-source.subpackage.sh │ └── openjdk-21-x.subpackage.sh ├── openjpeg │ ├── CMakeLists.txt.patch │ ├── build.sh │ └── openjpeg-tools.subpackage.sh ├── openldap │ └── build.sh ├── openmpi │ ├── build.sh │ ├── opal-mca-memory-patcher-memory_patcher_component.c.patch │ ├── opal-util-info.c.patch │ ├── opal-util-info_subscriber.c.patch │ ├── opal-util-malloc.h.patch │ ├── orte-mca-state-base-state_base_fns.c.patch │ └── oshmem-mca-memheat-ptmalloc-malloc.c.patch ├── openscad │ ├── CVE-2022-0496.patch │ ├── CVE-2022-0497.patch │ ├── build.sh │ ├── generic_print_polyhedron.patch │ ├── src-GLView.h.patch │ ├── src-NULLGL.cc.patch │ ├── src-cgalutils-tess.cc.patch │ └── src-openscad.cc.patch ├── openssh │ ├── Makefile.in.patch │ ├── auth.c.patch │ ├── auth2-passwd.c.patch │ ├── build.sh │ ├── contrib_ssh-copy-id.patch │ ├── defines.h.patch │ ├── hostfile.c.patch │ ├── loginrec.c.patch │ ├── misc.c.patch │ ├── mux.c.patch │ ├── openbsd-compat_explicit_bzero.c.patch │ ├── openbsd-compat_xcrypt.c.patch │ ├── openssh-sftp-server.subpackage.sh │ ├── pathnames.h.patch │ ├── scp-with-agent.sh │ ├── servconf.c.patch │ ├── serverloop.c.patch │ ├── session.c.patch │ ├── sftp-server.c.patch │ ├── sftp-with-agent.sh │ ├── source-ssh-agent.sh │ ├── ssh-agent.c.patch │ ├── ssh-copy-id.sh │ ├── ssh-keygen.c.patch │ ├── ssh-with-agent.sh │ ├── sshd.c.patch │ ├── sshd_config.5.patch │ └── sshpty.c.patch ├── openssl-1.1 │ ├── Configurations-15-android.conf.patch │ ├── apps-ocsp.c.patch │ ├── build.sh │ ├── e_os.h.patch │ └── openssl1.1-tool.subpackage.sh ├── openssl │ ├── Configurations-15-android.conf.patch │ ├── add-trusted-certificate │ ├── build.sh │ ├── include-crypto-rand.h.patch │ └── openssl-tool.subpackage.sh ├── optipng │ ├── build.sh │ └── configure.patch ├── opus-tools │ └── build.sh ├── opusfile │ ├── CVE-2022-47021.patch │ └── build.sh ├── osm2pgsql │ ├── CMakeLists.txt.patch │ ├── FindLua.cmake.patch │ └── build.sh ├── osmctools │ └── build.sh ├── osmium-tool │ └── build.sh ├── ossp-uuid │ ├── LICENSE.patch │ ├── build.sh │ ├── ossp.patch │ ├── uuid-aarch64.patch │ └── z-no-docs-no-strip.patch ├── outfieldr │ ├── build.sh │ └── build.zig.patch ├── ovmf │ └── build.sh ├── p11-kit │ └── build.sh ├── p7zip │ ├── build.sh │ ├── makefile.patch │ └── no-type-redefinitions.patch ├── pacman │ ├── add.c.patch │ ├── build.sh │ ├── diskspace.c.patch │ ├── doc_meson.build.patch │ ├── executable_meson.build.patch │ ├── makepkg.conf.in.patch │ ├── makepkg.sh.in.patch │ ├── meson.build.patch │ ├── meson_options.txt.patch │ ├── pacman-key.sh.in.patch │ ├── pacman.c.patch │ ├── pacman.conf.in.patch │ ├── repo-add.sh.in.patch │ ├── trans.c.patch │ └── util.c.patch ├── pacman4console │ ├── 1-pacman.c.patch │ ├── 2-pacman.c.patch │ ├── 3-pacman.c.patch │ ├── Makefile.patch │ ├── build.sh │ ├── pacman.6 │ └── pacmanedit.1 ├── panda3d │ ├── build.sh │ ├── dtool-src-dtoolutil-filename.cxx.patch │ ├── makepanda-installpanda.py.patch │ └── panda3d-samples.subpackage.sh ├── pandoc │ └── build.sh ├── pango │ ├── bsearch-fix.patch │ ├── build.sh │ ├── gir │ │ └── 1.50.14 │ │ │ ├── Pango-1.0.xml │ │ │ ├── PangoCairo-1.0.xml │ │ │ ├── PangoFT2-1.0.xml │ │ │ ├── PangoFc-1.0.xml │ │ │ ├── PangoOT-1.0.xml │ │ │ └── PangoXft-1.0.xml │ └── pango-view.1 ├── paperkey │ └── build.sh ├── par2 │ └── build.sh ├── parallel │ ├── Makefile.in.patch │ ├── build.sh │ ├── parallel.patch │ └── sem.patch ├── pari │ ├── build.sh │ ├── config-Makefile.SH.patch │ ├── config-get_cc.patch │ ├── config-get_double_format.patch │ ├── config-get_gmp.patch │ ├── config-get_readline.patch │ ├── config-paricfg.h.SH.patch │ ├── src-language-es.c.patch │ └── src-language-gplib.c.patch ├── parted │ ├── 01_lseek.patch │ ├── 02_devblock.patch │ ├── build.sh │ └── configure-pthreads-no-weak.patch ├── paruz │ ├── build.sh │ └── paruz.patch ├── pass-otp │ ├── build.sh │ └── otp.bash.patch ├── pass │ ├── build.sh │ └── src-password-store.sh.patch ├── passphrase2pgp │ └── build.sh ├── pastebinit │ ├── build.sh │ └── fix-paths.patch ├── pastel │ └── build.sh ├── patch │ ├── build.sh │ └── tmpdir-path.patch ├── patchelf │ └── build.sh ├── pathpicker │ └── build.sh ├── pb │ └── build.sh ├── pcal │ ├── COPYRIGHT.moonphase │ └── build.sh ├── pcaudiolib │ └── build.sh ├── pcre │ ├── build.sh │ ├── libpcreposix.subpackage.sh │ └── pcregrep.subpackage.sh ├── pcre2 │ ├── build.sh │ └── pcre2grep.subpackage.sh ├── pdf2djvu │ └── build.sh ├── pdf2svg │ └── build.sh ├── pdfcpu │ └── build.sh ├── pdfgrep │ └── build.sh ├── pdftk │ ├── build.sh │ └── pdftk.patch ├── peaclock │ └── build.sh ├── peco │ └── build.sh ├── perl-rename │ └── build.sh ├── perl │ ├── build.sh │ ├── cnf-clang16.patch │ ├── cnf-configure_func.sh.patch │ ├── cnf-configure_path.sh.patch │ ├── file-spec-unix.pm.patch │ ├── no-sudo.patch │ └── perlio.c.patch ├── pet │ └── build.sh ├── pforth │ ├── CMakeLists.txt.patch │ └── build.sh ├── photon-rss │ └── build.sh ├── php-apcu │ └── build.sh ├── php-imagick │ ├── build.sh │ └── disable-openmp.patch ├── php-psr │ └── build.sh ├── php-redis │ └── build.sh ├── php-zephir-parser │ └── build.sh ├── php │ ├── build.sh │ ├── ext-opcache-config.m4.patch │ ├── ext-opcache-jit-Makefile.frag.patch │ ├── ext-opcache-zend_accelerator_module.c.patch │ ├── ext-pdo_pgsql-config.m4.patch │ ├── ext-pgsql-config.m4.patch │ ├── ext-phar-Makefile.frag.patch │ ├── ext-posix-posix.c.patch │ ├── ext-standard-basic_functions.c.patch │ ├── ext-standard-dns.c.patch │ ├── ext-standard-php_fopen_wrapper.c.patch │ ├── ext-standard-proc_open.c.patch │ ├── main-streams-cast.c.patch │ ├── pear-Makefile.frag.patch │ ├── php-apache-ldap.subpackage.sh │ ├── php-apache-opcache.subpackage.sh │ ├── php-apache-pgsql.subpackage.sh │ ├── php-apache-sodium.subpackage.sh │ ├── php-apache.subpackage.sh │ ├── php-fpm.patch │ ├── php-fpm.subpackage.sh │ ├── php-ldap.subpackage.sh │ ├── php-pgsql.subpackage.sh │ ├── php-sodium.subpackage.sh │ ├── sapi-apache2handler-config.m4.patch │ └── use-local-fastcgi-header.patch ├── phpmyadmin │ ├── build.sh │ └── phpmyadmin.conf ├── pianobar │ ├── Makefile.patch │ ├── build.sh │ └── src-player.h.patch ├── pick │ ├── build.sh │ ├── configure.patch │ └── pick.c.patch ├── picocom │ └── build.sh ├── picolisp │ ├── build.sh │ └── fix-bash-completion.patch ├── pigz │ ├── LICENSE.patch │ ├── Makefile.patch │ └── build.sh ├── pika │ ├── Makefile.patch │ ├── build.sh │ ├── include-pika_statistic.h.patch │ ├── src-pika_admin.cc.patch │ ├── src-pika_repl_client_conn.cc.patch │ ├── third-blackwidow-Makefile.patch │ ├── third-blackwidow-src-coding.h.patch │ ├── third-blackwidow-src-db_checkpoint.cc.patch │ ├── third-blackwidow-src-options_helper.h.patch │ ├── third-pink-pink-Makefile.patch │ ├── third-pink-pink-src-http_conn.cc.patch │ ├── third-slash-slash-Makefile.patch │ ├── third-slash-slash-src-env.cc.patch │ └── third-slash-slash-src-posix.cc.patch ├── pinentry │ ├── build.sh │ ├── pinentry-emacs.c.patch │ └── pinentry-pinentry-curses.c.patch ├── pingme │ └── build.sh ├── pipebuffer │ └── build.sh ├── pipes.sh │ └── build.sh ├── pipewire │ ├── IPTOS_DSCP.patch │ ├── build.sh │ ├── pthread_cancel.patch │ ├── reallocarray.c │ ├── reallocarray.diff │ └── runtime_dir.patch ├── pkg-config │ └── build.sh ├── pkgfile │ ├── build.sh │ ├── meson.build.patch │ ├── meson_options.txt.patch │ ├── src-update.c.patch │ └── src-update.h.patch ├── pkgtop │ ├── build.sh │ └── termux-distribution.patch ├── plantuml │ ├── build.sh │ └── plantuml.patch ├── play-audio │ └── build.sh ├── plutolang │ ├── Makefile.patch │ ├── build.sh │ ├── src-Makefile.patch │ ├── src-loslib.cpp.patch │ └── src-luaconf.h.patch ├── plzip │ ├── build.sh │ └── configure.patch ├── pngcrush │ └── build.sh ├── pngquant │ └── build.sh ├── pocketbase │ └── build.sh ├── poke │ └── build.sh ├── polipo │ ├── Makefile.patch │ ├── build.sh │ ├── fix-hardcoded-paths.patch │ └── termux.config ├── polyml │ ├── Makefile.in.patch.beforehostbuild │ ├── build.sh │ ├── libpolyml-basicio.cpp.patch │ ├── libpolyml-osmemunix.cpp.patch │ ├── libpolyml-process_env.cpp.patch │ └── modules-IntInfAsInt-Makefile.in.patch.beforehostbuild ├── pomodoro-curses │ ├── Makefile.patch │ └── build.sh ├── poppler-data │ └── build.sh ├── poppler │ ├── build.sh │ ├── force-termux-include-dirs.patch │ ├── gir │ │ └── Poppler-0.18.xml │ └── gstrtod.cc.patch ├── portaudio │ ├── Makefile.in.patch │ └── build.sh ├── portmidi │ ├── build.sh │ ├── pm_common-pmutil.c.patch │ └── porttime-ptlinux.c.patch ├── posixvala │ └── build.sh ├── postgis │ ├── build.sh │ ├── configure.patch │ └── liblwgeom-ptarray.c.patch ├── postgresql │ ├── 0000-fix-hardcoded-paths.patch │ ├── build.sh │ ├── pg_config.in │ ├── src-backend-Makefile.patch │ ├── src-backend-commands-collationcmds.c.patch │ ├── src-backend-storage-ipc-dsm_impl.c.patch │ ├── src-backend-utils-adt-xml.c.patch │ ├── src-bin-initdb-initdb.c.patch │ └── src-timezone-zic.c.patch.beforehostbuild ├── potrace │ └── build.sh ├── pounce │ ├── bounce.h.patch │ ├── build.sh │ ├── pounce.1.patch │ └── xdg.c.patch ├── povray │ ├── Makefile.in.patch │ ├── build.sh │ ├── configure.patch │ ├── povray-data.subpackage.sh │ ├── povray.conf.patch │ ├── source-base-platformbase.cpp.patch │ └── vfe-unix-unixoptions.cpp.patch ├── privoxy │ ├── GNUmakefile.in.patch │ ├── build.sh │ ├── jcc.c.patch │ └── project.h.patch ├── procps │ ├── Makefile.am.patch │ ├── build.sh │ ├── langinfo.patch │ ├── pmap.c.patch │ ├── proc-sysinfo.c.patch │ ├── proc-whattime.c.patch │ ├── procio.c.patch │ ├── progname.patch │ ├── src-proc-readproc.c.patch │ ├── sysctl.c.patch │ ├── top-top.c.patch │ └── w.c.patch ├── procs │ └── build.sh ├── procyon-decompiler │ ├── build.sh │ ├── gradle-7.patch │ └── procyon-decompiler.patch ├── profanity │ ├── build.sh │ └── cmd_funcs.c.patch ├── progress │ ├── Makefile.patch │ └── build.sh ├── proj │ └── build.sh ├── proot-distro │ └── build.sh ├── proot │ ├── build.sh │ └── termux-chroot ├── protobuf-static │ └── build.sh ├── proton-bridge │ ├── build.sh │ └── disable-updater.patch ├── prover9 │ └── build.sh ├── proxmark3 │ ├── build.sh │ └── use-softfp.patch ├── proxychains-ng │ ├── Makefile.patch │ ├── build.sh │ ├── hostreader.c.patch │ ├── libproxychains.c.patch │ └── long-path-buffers.patch ├── psmisc │ ├── build.sh │ ├── pstree.c.patch │ ├── src-fuser.c.patch │ ├── src-killall.c.patch │ └── src-pstree.c.patch ├── ptex │ └── build.sh ├── ptunnel-ng │ ├── build.sh │ └── nosetugid.patch ├── pulseaudio │ ├── build.sh │ ├── fix-paths.patch │ ├── memfd-no-seal.patch │ ├── meson.patch │ ├── module-aaudio-sink.c │ ├── module-sles-sink.c │ ├── module-sles-source.c │ ├── no_priv_drop.patch │ └── pulseaudio-glib.subpackage.sh ├── pup │ └── build.sh ├── pure-ftpd │ ├── build.sh │ ├── pure-pwconvert.c.patch │ ├── src-ftpd.h.patch │ └── src-ftpd_p.h.patch ├── pv │ └── build.sh ├── pwgen │ └── build.sh ├── pycairo │ └── build.sh ├── pygobject │ └── build.sh ├── pypy │ ├── 0001-add-wait3-function-for-resource-module.patch │ ├── 0002-add-getprotobyname.patch │ ├── 0003-fix-hardcoded-paths.patch │ ├── 0004-fix-loaded-libs.patch │ ├── 0005-fix-unavailable-functions.patch │ ├── 0006-package-zip.patch │ ├── 0007-termux-build.patch │ ├── 0008-do-not-cffi-dlopen-when-compiling-sqlite3.patch │ ├── 9999-add-ANDROID_API_LEVEL-for-sysconfigdata.diff │ ├── build.sh │ └── pypy-tkinter.subpackage.sh ├── pypy3 │ ├── 0001-add-wait3-function-for-resource-module.patch │ ├── 0002-add-getprotobyname.patch │ ├── 0003-fix-hardcoded-paths.patch │ ├── 0004-fix-loaded-libs.patch │ ├── 0005-fix-unavailable-functions.patch │ ├── 0006-package-zip.patch │ ├── 0007-termux-build.patch │ ├── 0008-do-not-cffi-dlopen-when-compiling-sqlite3.patch │ ├── 0009-add-shm-functions-for-posixshmem-module.patch │ ├── 9998-link-against-pypy3-on-testcapi.diff │ ├── 9999-add-ANDROID_API_LEVEL-for-sysconfigdata.diff │ ├── build.sh │ └── pypy3-tkinter.subpackage.sh ├── pystring │ └── build.sh ├── python-apsw │ ├── build.sh │ └── setup.cfg ├── python-apt │ └── build.sh ├── python-bcrypt │ └── build.sh ├── python-cryptography │ └── build.sh ├── python-greenlet │ ├── build.sh │ └── setup.py.patch ├── python-grpcio │ ├── build.sh │ ├── log_android.cc.patch │ ├── setup.py.patch │ ├── src-core-lib-gpr-tmpfile_posix.cc.patch │ ├── src-core-lib-security-security_connector-load_system_roots_supported.cc.patch │ └── src-core-lib-security-security_connector-ssl_utils.cc.patch ├── python-lameenc │ ├── build.sh │ └── setup.py.patch ├── python-libsass │ ├── build.sh │ └── setup.py.patch ├── python-numpy │ ├── build.sh │ ├── site-openblas.patch │ └── test.patch ├── python-pillow │ ├── build.sh │ └── setup.py.patch ├── python-pip │ ├── build.sh │ ├── conf.py.patch │ ├── fix-hardcoded-paths.patch │ └── install_py_preventing_pip_from_installing.patch ├── python-pyarrow │ ├── build.sh │ ├── cpp-cmake_modules-FindPython3Alt.cmake.patch │ ├── python-CMakeLists.txt.patch │ └── setup.py.diff ├── python-sabyenc3 │ └── build.sh ├── python-scipy │ └── build.sh ├── python-tldp │ ├── build.sh │ ├── setup.py.patch │ ├── tldp-config.py.patch │ └── tldp-ldpcollection.py.patch ├── python-torch │ ├── 0001-do-not-error-on-cast-function-type-strict.patch │ ├── 0002-fix-macros.patch │ ├── 0003-impl-posix-shm.patch │ ├── 0004-memalign.patch │ ├── 0005-fix-arm-target-triple.patch │ ├── 0006-fix-cross-compiling-for-FindAVX.patch │ ├── 0007-enable-cxx17-by-default.patch │ ├── 0008-fix-for-narrowing.patch │ ├── 0009-fix-over-optimizing.patch │ └── build.sh ├── python-torchaudio │ ├── 0001-do-not-try-to-import-torch-when-cross-compiling.patch │ ├── 0002-fix-cross-compiling.patch │ ├── 0003-fix-patch-for-sox.patch │ ├── 0004-fix-patch-for-vorbis.patch │ └── build.sh ├── python-torchvision │ ├── build.sh │ └── setup.py.patch ├── python-xlib │ ├── Xlib-support-unix_connect.py.patch │ └── build.sh ├── python │ ├── Lib-ctypes-util.py.patch │ ├── Lib-subprocess.py.patch │ ├── Lib-tmpfile.py.patch │ ├── Modules-socketmodule.c.patch │ ├── _cursesmodule.c.patch │ ├── build.sh │ ├── configure.patch │ ├── disable-parallel-build.patch │ ├── fix-paths.patch │ ├── multiprocessing.patch │ ├── no-setuid-servers.patch │ ├── no-xattr.patch │ ├── python-ensurepip-wheels.subpackage.sh │ ├── python-tkinter.subpackage.sh │ └── setup.py.patch ├── python2 │ ├── Lib-subprocess.py.patch │ ├── Lib-tempfile.py.patch │ ├── Makefile.pre.in.patch │ ├── Modules-pwdmodule.c.patch │ ├── Python-bltinmodule.c.patch │ ├── build.sh │ ├── configure.patch │ ├── cryptmodule.c.patch │ ├── fix-dlfcn.patch32 │ ├── fix-dlfcn.patch64 │ ├── fix-paths.patch │ ├── no-setuid-servers.patch │ └── setup.py.patch ├── q-dns-client │ ├── build.sh │ └── fix-path.patch ├── qalc │ ├── build.sh │ └── libqalculate-util.cc.patch ├── qemu-system-x86-64-headless │ ├── 0000-android-config-support.patch │ ├── 0001-fix-hardcoded-paths.patch │ ├── 0002-fix-soundcard.h-location.patch │ ├── 0003-fix-time_nsec-defs.patch │ ├── 0004-add-missing-telldir-seekdir.patch │ ├── 0005-add-missing-sigorset.patch │ ├── 0006-fix-sem.h-location.patch │ ├── 0007-fix-syscalls.patch │ ├── 0008-fix-struct-member-conflicts.patch │ ├── 0009-fix-mman.h-defs.patch │ ├── 0010-disable-glob.h-include.patch │ ├── 0011-misc-build-fixes.patch │ ├── 0012-add-missing-arch_prctl.patch │ ├── 0013-mmap_min_addr-fallback.patch │ ├── 0014-force-ucs2-little-endian.patch │ ├── 0015-9pfs-dont-chmod-mapfile.patch │ ├── 0016-disable-signalfd.patch │ ├── 0017-find-gdbus-codegen.patch │ ├── build.sh │ ├── qemu-7.1.0-linux-user-mmap.c.patch │ ├── qemu-common.subpackage.sh │ ├── qemu-system-aarch64-headless.subpackage.sh │ ├── qemu-system-arm-headless.subpackage.sh │ ├── qemu-system-i386-headless.subpackage.sh │ ├── qemu-system-m68k-headless.subpackage.sh │ ├── qemu-system-ppc-headless.subpackage.sh │ ├── qemu-system-ppc64-headless.subpackage.sh │ ├── qemu-system-riscv32-headless.subpackage.sh │ ├── qemu-system-riscv64-headless.subpackage.sh │ ├── qemu-user-aarch64.subpackage.sh │ ├── qemu-user-arm.subpackage.sh │ ├── qemu-user-i386.subpackage.sh │ ├── qemu-user-m68k.subpackage.sh │ ├── qemu-user-ppc.subpackage.sh │ ├── qemu-user-ppc64.subpackage.sh │ ├── qemu-user-riscv32.subpackage.sh │ ├── qemu-user-riscv64.subpackage.sh │ ├── qemu-user-x86-64.subpackage.sh │ ├── qemu-utils.subpackage.sh │ └── setjmp-aarch64 │ │ ├── private-bionic_asm.h │ │ ├── private-bionic_asm_arm64.h │ │ ├── private-bionic_constants.h │ │ └── setjmp.S ├── qhull │ └── build.sh ├── qpdf │ └── build.sh ├── qrsspig │ ├── build.sh │ └── etc-qrsspig.yaml.patch ├── quick-lint-js │ └── build.sh ├── quickjs │ ├── Makefile.patch │ └── build.sh ├── quilt │ ├── build.sh │ ├── quilt-scripts-utilfns.patch │ └── quilt-setup.in.patch ├── racket │ ├── build.sh │ ├── collects-racket-system.rkt.patch │ ├── configure.patch │ ├── newgc.c.patch │ ├── rktio_dll.c.patch │ └── sconfig.h.patch ├── radare2 │ ├── build.sh │ └── cs_release-disable.patch ├── rage │ └── build.sh ├── ragel │ ├── build.sh │ └── configure.diff ├── railway-cli │ └── build.sh ├── ranger │ ├── build.sh │ ├── ranger-config-commands.py.patch │ ├── ranger-core-actions.py.patch │ └── ranger.patch ├── rapidjson │ └── build.sh ├── rappel │ ├── build.sh │ ├── include-assemble.h.patch │ ├── missing-fexecve.patch │ ├── struct-redef.patch │ └── tmpdir.patch ├── ratt │ └── build.sh ├── ravencoin │ ├── build.sh │ ├── src-algo-sha2.c.patch │ └── src-leveldb-util-env_posix.cc.patch ├── rbw │ └── build.sh ├── rclone │ ├── autocomplete_path.patch │ └── build.sh ├── rcm │ └── build.sh ├── rcs │ ├── build.sh │ └── lib-xalloc.h.patch ├── rcshell │ ├── build.sh │ ├── rc-1.7.4_glom.c.patch │ └── rc-1.7.4_history.c.patch ├── rdfind │ └── build.sh ├── rdiff-backup │ └── build.sh ├── rdircd │ └── build.sh ├── rdrview │ ├── Makefile.patch │ ├── add-seccomp-rules.patch │ ├── build.sh │ └── src-rdrview.c.patch ├── re2c │ └── build.sh ├── readline │ ├── build.sh │ ├── inputrc │ └── rlconf.h.patch ├── recode │ └── build.sh ├── recoll │ ├── Makefile.am.patch │ ├── build.sh │ ├── fix-hardcoded-paths.patch │ ├── libxml-2.12.patch │ ├── m4-libtool.m4.patch │ ├── python-recoll-setup.py.in.diff │ ├── recoll-python.subpackage.sh │ └── utils-pathut.cpp.patch ├── recutils │ ├── build.sh │ ├── getpass.patch │ ├── rec-sex-parser.c.patch │ └── rec-sex-tab.c.patch ├── redir │ ├── build.sh │ └── redir.c.patch ├── redis │ ├── build.sh │ ├── fix-deps-lua.patch │ ├── pthread_cancel.patch │ ├── redis.conf.patch │ ├── setproctitle.patch │ └── src-server.h.patch ├── remind │ └── build.sh ├── renameutils │ ├── add-missing-functions.patch │ ├── build.sh │ ├── disable-fdsan.patch │ ├── fix-tmpdir.patch │ └── fix-typos.patch ├── reptyr │ ├── Makefile.patch │ └── build.sh ├── resolv-conf │ └── build.sh ├── restic-server │ └── build.sh ├── restic │ ├── build.sh │ └── failsafe-chmod.patch ├── restish │ └── build.sh ├── rgbds │ └── build.sh ├── rhash │ ├── build.sh │ ├── configure.patch │ └── librhash-byte_order.h.patch ├── rig │ ├── Makefile.patch │ └── build.sh ├── rinetd │ ├── build.sh │ └── src-rinetd.h.patch ├── rip │ ├── build.sh │ └── src-main.rs.patch ├── ripgrep-all │ ├── build.sh │ └── rga-fzf ├── ripgrep │ └── build.sh ├── ripsecrets │ └── build.sh ├── rirc │ ├── Makefile.patch │ ├── build.sh │ ├── fix-hardcoded-paths.patch │ └── struct_user.patch ├── rizin │ └── build.sh ├── rlwrap │ ├── build.sh │ ├── disable-bracketed-paste.patch │ ├── fix-hardcoded-paths.patch │ └── ptytty.c.patch ├── rnr │ └── build.sh ├── robin-map │ └── build.sh ├── robotfindskitten │ └── build.sh ├── root-repo │ └── build.sh ├── rp-pppoe │ ├── build.sh │ └── src-Makefile.in.patch ├── rpm │ ├── build.sh │ ├── errno.patch │ └── goto_declaration.patch ├── rq │ ├── build.sh │ └── lib.rs.patch ├── rsnapshot │ ├── build.sh │ ├── no-hard-links.patch │ └── rsnapshot.conf ├── rsync │ ├── build.sh │ ├── rsync-3.1.3_lib_getpass.c.patch │ └── rsync.h.patch ├── rtmpdump │ ├── Makefile.patch │ └── build.sh ├── rtorrent │ └── build.sh ├── rubberband │ ├── build.sh │ ├── rubberband-ladspa.subpackage.sh │ ├── rubberband-lv2.subpackage.sh │ └── rubberband-vamp.subpackage.sh ├── rubiks-cube │ ├── Makefile.patch │ └── build.sh ├── ruby │ ├── Makefile.in.patch │ ├── android-sdk-level.patch │ ├── build.sh │ ├── ext-syslog-extconf.rb.patch │ ├── fix-paths.patch │ ├── lib-rubygems-install_update_options.rb.patch │ ├── libandroid-execinfo.patch │ ├── mkmf.rb.patch │ ├── ruby-ri.subpackage.sh │ ├── tests │ │ ├── default_encoding_isutf8.sh │ │ └── extension_modules_installed.sh │ └── tool-rbinstall.rb.diff ├── ruff │ ├── build.sh │ ├── ctermid.c │ └── tikv-jemalloc-sys-0.5.3+5.3.0-patched-src-lib.rs.diff ├── runit │ └── build.sh ├── rush │ └── build.sh ├── rust-analyzer │ └── build.sh ├── rust-bindgen │ └── build.sh ├── rust │ ├── build.sh │ ├── compiler-rustc_driver_impl-src-lib.rs.patch │ ├── compiler-rustc_llvm-build.rs.patch │ ├── config.toml │ ├── getloadavg.c │ ├── library-std-src-sys-unix-os.rs.patch │ ├── rust-docs.subpackage.sh │ ├── rust-std-wasm32.subpackage.sh │ ├── rustc-dev.subpackage.sh │ ├── src-bootstrap-cc_detect.rs.diff │ ├── src-tools-rust-analyzer-crates-proc-macro-srv-src-dylib.rs.patch │ └── syncfs.c ├── rustscan │ └── build.sh ├── rw │ └── build.sh ├── rxfetch │ └── build.sh ├── sabnzbd │ ├── build.sh │ ├── prog_dir.patch │ └── webbrowser.patch ├── salty-chat │ ├── build.sh │ └── makefile.patch ├── samba │ ├── 0001-The-great-tmp-path-replacement.patch │ ├── 0002-Remove-setuid-etc.patch │ ├── 0003-smbpasswd-remove-root-related-restrictions.patch │ ├── 0005-samba-documents-provider-sambapatch.patch │ ├── 0006-add-berserker.-c-h.patch │ ├── 0007-nss-buflen-passwd.patch │ ├── build.sh │ ├── findsmb.patch │ ├── getgrouplist.patch │ ├── krb-link-already-defined.patch │ ├── more-pw_gecos-removal.patch │ ├── openwrt-fix-host-tools-checks.patch │ ├── samba-4.16.10-configure-clang16.patch │ └── smb.conf.example.in ├── samefile │ ├── LICENSE.patch │ └── build.sh ├── samurai │ ├── Makefile.patch │ └── build.sh ├── sc-im │ ├── Makefile.patch │ ├── build.sh │ ├── clipboard.c.patch │ ├── cmds_normal.c.patch │ ├── cmds_visual.c.patch │ ├── file.c.patch │ ├── plot.c.patch │ └── xls.c.patch ├── scala │ └── build.sh ├── scc │ └── build.sh ├── sccache │ └── build.sh ├── scdoc │ ├── Makefile.patch.beforehostbuild │ └── build.sh ├── screen │ ├── acconfig.h.patch │ ├── attacher.c.patch │ ├── build.sh │ ├── fileio.c.patch │ ├── misc.c.patch │ ├── no-setuid.patch │ ├── os.h.patch │ ├── osdef.h.in.patch │ ├── screen.h.patch │ ├── utmp.c.patch │ └── window.c.patch ├── screenfetch │ ├── build.sh │ └── screenfetch-dev.patch ├── scrub │ └── build.sh ├── scrypt │ └── build.sh ├── sd │ └── build.sh ├── sdcv │ ├── build.sh │ ├── src-mapfile.hpp.patch │ └── src-sdcv.cpp.patch ├── seafile-client │ ├── build.sh │ └── configure.ac.patch ├── seccure │ ├── Makefile.patch │ └── build.sh ├── secure-delete │ ├── 000-from-debian.patch │ ├── 001-makefile-cc.patch │ └── build.sh ├── sed │ ├── build.sh │ ├── fix-locale.patch │ └── lib-stdio-impl.h.patch ├── sendxmpp │ └── build.sh ├── senpai │ └── build.sh ├── sensible-utils │ └── build.sh ├── serd │ └── build.sh ├── serf │ ├── build.sh │ └── sconstruct.patch ├── sfeed │ ├── Makefile.patch │ └── build.sh ├── shaderc │ └── build.sh ├── shairport-sync │ ├── build.sh │ ├── configure.ac.patch │ └── shairport.c.patch ├── sharutils │ ├── build.sh │ ├── config.h.in.patch │ ├── fix-duplicate-symbols.patch │ └── lib-stdio-impl.h.patch ├── shc │ ├── build.sh │ └── src-shc.c.patch ├── sheldon │ └── build.sh ├── shell2http │ └── build.sh ├── shellcheck │ └── build.sh ├── shellharden │ └── build.sh ├── shellinabox │ ├── build.sh │ ├── shellinabox-2.20_Makefile.am.patch │ ├── shellinabox-2.20_libhttp_ssl.c.patch │ ├── shellinabox-2.20_shellinabox_launcher.c.patch │ ├── shellinabox-2.20_shellinabox_privileges.c.patch │ ├── shellinabox-2.20_shellinabox_service.c.patch │ ├── shellinabox_launcher.c.patch │ └── shellinabox_shellinaboxd.c.patch ├── shfmt │ └── build.sh ├── shiori │ └── build.sh ├── shntool │ └── build.sh ├── shtool │ └── build.sh ├── signify │ ├── Makefile.patch │ ├── build.sh │ └── signify.c.patch ├── silicon │ ├── build.sh │ └── src-hb_wrapper.rs.patch ├── silversearcher-ag │ └── build.sh ├── simh │ ├── LICENSE │ └── build.sh ├── simulavr │ ├── build.sh │ ├── hardcode-version.diff │ └── no-doc.patch ├── simuwaerm │ └── build.sh ├── sing-box │ └── build.sh ├── skate │ └── build.sh ├── sl │ ├── build.sh │ └── makefile.patch ├── slang │ ├── build.sh │ ├── slang-2.3.2_slsh_lib_rline_editor.sl.patch │ ├── slang-2.3.2_slsh_lib_sldbsock.sl.patch │ ├── slang-2.3.2_src_slsignal.c.patch │ └── slang-2.3.2_src_sltermin.c.patch ├── slashtime │ ├── build.sh │ └── slashtime.pl.patch ├── sleuthkit │ └── build.sh ├── slides │ └── build.sh ├── slugify │ └── build.sh ├── smalltalk │ ├── Makefile.am.patch │ ├── build.sh │ ├── expat.c.patch │ ├── isinfl.patch │ ├── no_hardlink.patch │ └── rlimit.patch ├── snake │ ├── LICENSE │ ├── build.sh │ ├── iostream.patch │ └── makefile.patch ├── snapcast-server │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── client-snapclient.cpp.patch │ ├── server-config.cpp.patch │ ├── server-control_session_http.cpp.patch │ ├── server-etc-snapserver.conf.patch │ ├── server-server_settings.hpp.patch │ ├── server-snapserver.1.patch │ ├── server-snapserver.cpp.patch │ ├── server-streamreader-airplay_stream.cpp.patch │ ├── snapcast-client.subpackage.sh │ └── test-test_main.cpp.patch ├── snmptt │ ├── build.sh │ └── snmptt.ini.patch ├── socat │ ├── 0001-dont_use_resolv_h.patch │ ├── 0002-fix-format-specifiers-for-32-bit-archs.patch │ ├── 0003-no-o_append.patch │ ├── 0004-udp-listen-bind4.patch │ └── build.sh ├── softether-vpn │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── src-CMakeLists.txt.patch │ ├── src-Cedar-CMakeLists.txt.patch │ ├── src-Cedar-Cedar.c.patch │ ├── src-Mayaqua-FileIO.c.orig.patch │ ├── src-Mayaqua-Mayaqua.c.orig.patch │ ├── src-Mayaqua-Network.c.orig.patch │ └── src-Mayaqua-Unix.c.orig.patch ├── soju │ ├── Makefile.patch │ ├── build.sh │ ├── config-config.go.patch │ └── config.in.patch ├── solidity │ ├── CMakeLists.txt.patch │ ├── EthCompilerSettings.cmake.patch │ ├── build.sh │ ├── libsolidity-lsp-DocumentHoverHandler.cpp.patch │ └── libsolutil-JSON.cpp.patch ├── sops │ └── build.sh ├── sord │ └── build.sh ├── sox │ ├── build.sh │ └── src-formats.c.patch ├── spark │ └── build.sh ├── spatialite-tools │ └── build.sh ├── speechd │ ├── build.sh │ ├── espeak.patch │ ├── i18n.c.patch │ ├── index_strchr.patch │ ├── pthread_cancel-followup.patch │ ├── pthread_cancel.patch │ ├── speechd-data.subpackage.sh │ ├── speechd.h.patch │ └── tmpdir.patch ├── speedtest-go │ └── build.sh ├── speexdsp │ └── build.sh ├── spglib │ └── build.sh ├── spiped │ ├── Makefile.patch │ ├── build.sh │ ├── disable_armv8_specific_features.diff │ ├── libcperciva-util-setgroups_none.c.patch │ └── pthread_cancel.patch ├── spirv-headers │ └── build.sh ├── spirv-tools │ └── build.sh ├── sqlcipher │ ├── android_log.patch │ └── build.sh ├── squashfs-tools-ng │ └── build.sh ├── squeezelite │ ├── build.sh │ └── squeezelite.h.patch ├── squid │ ├── build.sh │ ├── fix-hardcoded-paths.patch │ ├── no-priv-drop.patch │ ├── posix-shm-support.patch │ └── sys-stat.h.patch ├── sratom │ └── build.sh ├── srelay │ ├── LICENSE.txt │ ├── build.sh │ ├── configure.in.patch │ ├── srelay-0.4.8p1_auth-pwd.c.patch │ ├── srelay-0.4.8p1_main.c.patch │ ├── srelay-0.4.8p1_readconf.c.patch │ └── srelay-0.4.8p1_srelay.h.patch ├── srt2vobsub │ ├── build.sh │ ├── defaults.conf.patch │ └── srt2vobsub.py.patch ├── ssdb │ ├── Makefile.patch │ ├── build.sh │ ├── build.sh.patch │ ├── src-ssdb-options.cpp.patch │ ├── src-ssdb-options.h.patch │ ├── src-ssdb-server.cpp.patch │ ├── src-ssdb-ssdb_impl.cpp.patch │ └── ssdb.conf.patch ├── ssdeep │ ├── Makefile.am.patch │ └── build.sh ├── sse2neon │ ├── Makefile.patch │ └── build.sh ├── sshpass │ └── build.sh ├── sshping │ ├── Makefile.patch │ └── build.sh ├── sslscan │ └── build.sh ├── sssnake │ ├── build.sh │ └── makefile.patch ├── ssss │ ├── Makefile.patch │ └── build.sh ├── stag │ ├── Makefile.patch │ ├── build.sh │ └── stag.c.patch ├── starship │ ├── 0001-Cargo.toml.patch │ ├── build.sh │ └── cmake-0.1.50-src-lib.rs.diff ├── stdman │ └── build.sh ├── stdoutisatty │ ├── build.sh │ └── soname.patch ├── steghide │ ├── build.sh │ ├── gcc-4.2.patch │ ├── libtool-fix.patch │ ├── steghide-climits.patch │ └── steghide-gcc6.patch ├── step-cli │ └── build.sh ├── stfl │ ├── 001-makefile.patch │ └── build.sh ├── stoken │ ├── build.sh │ └── src-cli.c.patch ├── stone │ └── build.sh ├── storj-uplink │ └── build.sh ├── stow │ └── build.sh ├── strace │ ├── build.sh │ ├── bundled-linux-include-uapi-linux-fs.h.patch │ ├── bundled-linux-include-uapi-linux-in.h.patch │ ├── configure-find-armv7-cc.patch │ ├── mpers-use-host-readelf-for-debug-dump.patch │ ├── sigreturn.c.patch │ ├── src-affinity.c.patch │ ├── src-defs.h.patch │ ├── strace.c.patch │ └── xlat-faccessat_flags.h.patch ├── streamripper │ ├── build.sh │ └── lib-argv.c.patch ├── stunnel │ └── build.sh ├── stuntman │ ├── build.sh │ └── common-commonincludes.hpp.patch ├── stylua │ └── build.sh ├── subtitleripper │ ├── Makefile.patch │ └── build.sh ├── subversion │ ├── build.sh │ ├── no_setlocale.patch │ ├── subversion-perl-static.subpackage.sh │ └── subversion-perl.subpackage.sh ├── suil │ └── build.sh ├── suite3270 │ ├── Common-codepage.c.patch │ ├── Common-config.sub.patch │ ├── Common-pr3287-codepage.c.patch │ ├── b3270-Makefile.obj.in.patch │ ├── build.sh │ ├── c3270-Makefile.obj.in.patch │ ├── lib-3270-Makefile.obj.in.patch │ └── s3270-Makefile.obj.in.patch ├── suitesparse │ ├── 0001-android-complex-math.patch │ └── build.sh ├── sun │ ├── build.sh │ └── timezone.patch ├── surfraw │ └── build.sh ├── svt-av1 │ ├── Source-Lib-Common-Codec-EbThreads.h.patch │ └── build.sh ├── swaks │ └── build.sh ├── swi-prolog │ └── build.sh ├── swift │ ├── build.sh │ ├── clang-lib-Driver-ToolChain.cpp.patch │ ├── llvm-project-clang-lib-Driver-ToolChains-Linux.cpp.patch │ ├── llvm-project-clang-tools-IndexStore-IndexStore.exports.patch │ ├── llvm-project-clang-tools-driver-cc1depscan_main.cpp.patch │ ├── sourcekit-lsp.subpackage.sh │ ├── swift-android-ndk26.patch │ ├── swift-android-spawn.patch │ ├── swift-change-library-lookup.patch │ ├── swift-cmake-flags-format.patch │ ├── swift-cmake.patch │ ├── swift-host-llvm-utilities.patch.beforehostbuild │ ├── swift-lib-Demangling-Errors.cpp.patch │ ├── swift-modify-astgen.patch │ ├── swift-modify-bridging.patch │ ├── swift-move-regex-literals.patch │ ├── swift-move-syntax-build.patch │ ├── swift-remove-relative-rpaths.patch │ ├── swift-runtime-aarch64.subpackage.sh │ ├── swift-runtime-arm.subpackage.sh │ ├── swift-runtime-x86-64.subpackage.sh │ ├── swift-sdk-aarch64.subpackage.sh │ ├── swift-sdk-arm.subpackage.sh │ ├── swift-sdk-x86-64.subpackage.sh │ ├── swift-standalone-toolchain.patch │ ├── swift-stdlib-public-runtime-CrashHandlerLinux.cpp.patch │ ├── swift-syntax-cross-compile-host.patch │ ├── swift-syntax-regex-cross-compile.patch │ ├── swift-syntax-unimplementable-missing.patch │ ├── swift-utils-build-script-impl-flags.patch │ ├── swift-utils-swift_build_support-swift_build_support-targets.py.patch │ ├── swiftpm-disable-local-rpath.patch │ ├── swiftpm-sqlite-dependency.patch │ ├── trigger-command │ └── trigger-header ├── swiftshader │ ├── build.sh │ ├── swiftshader-build-for-linux.patch │ ├── swiftshader-fix-loaded-libraries.patch │ ├── swiftshader-no-android.patch │ └── swiftshader-no-spawn.patch ├── swig │ └── build.sh ├── swtpm │ ├── build.sh │ ├── configure.ac.patch │ └── src-swtpm_setup-swtpm.c.patch ├── syncthing │ └── build.sh ├── sysprop │ ├── build.sh │ ├── include-android-base-unique_fd.h.patch │ └── sources.sh ├── ta-lib │ └── build.sh ├── taglib │ ├── bindings-c-taglib_c.pc.cmake.patch │ ├── build.sh │ ├── taglib-config.cmake.patch │ └── taglib.pc.cmake.patch ├── tar │ ├── build.sh │ ├── fix-linking-to-iconv.patch │ ├── src-system.c.patch │ └── tmpdir-path.patch ├── task-spooler │ ├── build.sh │ └── fix-hardcoded-paths.patch ├── tasksh │ └── build.sh ├── taskwarrior │ └── build.sh ├── tcc │ ├── Makefile.patch │ ├── build.sh │ ├── configure.patch │ ├── include-tccdefs.h.patch │ └── lib-bcheck.c.patch ├── tcl │ └── build.sh ├── tcllib │ ├── build.sh │ └── tcl-modules-path-fix.patch ├── tcsh │ ├── Makefile.in.patch │ ├── build.sh │ └── sh.h.patch ├── tdl │ └── build.sh ├── tea │ └── build.sh ├── tealdeer │ └── build.sh ├── teckit │ └── build.sh ├── tectonic │ └── build.sh ├── telegram-bot-api │ ├── build.sh │ └── logging.cpp.patch ├── telegram-cli │ ├── Makefile.in.patch │ ├── build.sh │ ├── main.c.patch │ ├── openssl-1.1.x.patch │ ├── tgl-generate.c.patch │ └── tgl-tl-parser-tlc.c.patch ├── teleport-tsh │ ├── build.sh │ └── metadata_linux.go.patch ├── tenki-php │ ├── build.sh │ └── tenki-php.conf ├── tere │ ├── 0001-rustix-fix-libc-removing-unsafe-on-makedev.diff │ └── build.sh ├── tergent │ ├── 0001-Automatically-unlock-keystore-using-fingerprint.patch │ └── build.sh ├── termimage │ └── build.sh ├── termplay │ └── build.sh ├── termux-am-socket │ └── build.sh ├── termux-am │ └── build.sh ├── termux-api │ └── build.sh ├── termux-apt-repo │ └── build.sh ├── termux-auth │ └── build.sh ├── termux-create-package │ └── build.sh ├── termux-elf-cleaner │ ├── android-api-level.diff │ └── build.sh ├── termux-exec │ └── build.sh ├── termux-gui-bash │ └── build.sh ├── termux-gui-c │ └── build.sh ├── termux-gui-package │ └── build.sh ├── termux-gui-pm │ └── build.sh ├── termux-keyring │ ├── androidide-autobuilds.gpg │ ├── build.sh │ └── itsaky.gpg ├── termux-licenses │ ├── LICENSES │ │ ├── AGPL-V3.txt │ │ ├── Apache-2.0.txt │ │ ├── Artistic-License-2.0.txt │ │ ├── BSL-1.0.txt │ │ ├── CC0-1.0.txt │ │ ├── CeCILL-2.1.txt │ │ ├── EPL-1.0.txt │ │ ├── EPL-2.0.txt │ │ ├── GPL-2.0.txt │ │ ├── GPL-3.0.txt │ │ ├── ISC.txt │ │ ├── ImageMagick.txt │ │ ├── LGPL-2.0.txt │ │ ├── LGPL-2.1.txt │ │ ├── LGPL-3.0.txt │ │ ├── MPL-2.0.txt │ │ ├── NCSA.txt │ │ ├── Nethack.txt │ │ ├── OpenLDAP.txt │ │ ├── PHP-3.0.txt │ │ ├── Public Domain.txt │ │ ├── Unlicense.txt │ │ ├── VIM License.txt │ │ ├── WTFPL.txt │ │ └── wxWindows.txt │ └── build.sh ├── termux-services │ └── build.sh ├── termux-tools │ └── build.sh ├── teseq │ └── build.sh ├── tesseract │ ├── build.sh │ └── src-training-CMakeLists.txt.patch ├── testssl.sh │ ├── build.sh │ └── fix-hardcodepath.patch ├── tex-gyre │ └── build.sh ├── texinfo │ ├── build.sh │ └── texindex-texindex.in.patch ├── texlab │ └── build.sh ├── texlive-bin │ ├── build.sh │ ├── disable-fdsan.patch │ ├── eptex-bool.patch │ ├── fix-path-to-md5.h.patch │ ├── pdftex-bool.patch │ ├── texk-kpathsea-texmf.cnf.patch │ ├── texk-web2c-Makefile.in.patch │ ├── texk-web2c-luatexdir-luaffi-ffi.h.patch │ └── zziplib_disable_have_dirent.patch ├── texlive-installer │ ├── TLUtils.pm.diff │ ├── build.sh │ ├── crossrefware.diff │ ├── install-tl.patch │ ├── installer.sh │ ├── pdfjam.diff │ ├── termux-patch-texlive.sh │ ├── termux.profile │ ├── texconfig.sh.diff │ ├── texdef.pl.diff │ ├── tlmgr.pl.diff │ └── tlpkg-TeXLive-TLUtils.pm.patch ├── tidy │ ├── build.sh │ └── disable-target-manpages.patch ├── tig │ └── build.sh ├── tilde │ ├── build.sh │ └── src-main.cc.patch ├── time │ ├── build.sh │ └── wait3.patch ├── timewarrior │ ├── build.sh │ ├── cmake-CXXSniffer.cmake.patch │ └── src-CMakeLists.txt.patch ├── timg │ ├── build.sh │ └── src-video-display.cc.patch ├── timidity++ │ ├── CVE-2017-11546.patch │ ├── CVE-2017-11547.patch │ ├── build.sh │ ├── timidity++-2.15.0-clang-16-configure.patch │ ├── timidity-Makefile.am.patch │ ├── timidity-common.c.patch │ └── timidity.cfg ├── tin-summer │ └── build.sh ├── tintin++ │ ├── build.sh │ └── src-system.c.patch ├── tinyfugue │ ├── build.sh │ ├── src-socket.c.patch │ ├── src-socket.h.patch │ ├── src-tfio.h.patch │ └── tinyfugue_unix_unix.mak.patch ├── tinygo │ ├── Makefile.patch.beforehostbuild │ ├── build.sh │ ├── fix-rpath.py │ └── tinygo-common.subpackage.sh ├── tinyproxy │ ├── CVE-2022-40468.patch │ ├── build.sh │ └── configure.patch ├── tinyscheme │ ├── build.sh │ ├── makefile.patch │ └── schema.c.patch ├── tizonia │ ├── build.sh │ ├── cast-libtizcastclient-src-tizcastclient_c.cc.patch │ ├── clients-chromecast-libtizchromecast-src-tizchromecast.cpp.patch │ ├── exe_wrapper │ ├── libtizcore-src-tizcore.c.patch │ ├── libtizplatform-src-tizrc.c.patch │ ├── libtizplatform-src-tizthread.c.patch │ ├── player-src-tizgraphmgr.cpp.patch │ ├── player-src-tizplayapp.cpp.patch │ ├── player-src-tizprogramopts.cpp.patch │ ├── plugins-chromecast_renderer-src-cc_prc.c.patch │ ├── plugins-http_renderer-src-httprsrv.c.patch │ ├── plugins-meson.build.patch │ └── rm-libtizrmproxy-src-tizrmproxy_c.cc.patch ├── tk │ ├── build.sh │ └── no-hardlinks.patch ├── tmate │ ├── build.sh │ ├── tmate-2.4.0-msgpack-6.0.0.patch │ └── tmux.h.patch ├── tmux │ ├── build.sh │ ├── compat-imsg.c.patch │ ├── compat-setproctitle.c.patch │ ├── configure.ac.patch │ ├── tmux.conf │ └── tmux.h.patch ├── toilet │ └── build.sh ├── tokei │ └── build.sh ├── tome2 │ ├── LICENSE │ ├── build.sh │ └── src-squelch-condition.cc.patch ├── toml11 │ └── build.sh ├── topgrade │ └── build.sh ├── tor │ ├── build.sh │ ├── src-app-main-main.c.patch │ └── src-feature-relay-dns.c.patch ├── torsocks │ ├── 02_getpid.patch │ ├── 04_tagged_pointer_fixes.patch │ ├── 05_deadlock_in_initializer.patch │ ├── Makefile.am.patch │ ├── build.sh │ ├── configure.ac.patch │ ├── src-common-compat.h.patch │ ├── src-common-config-file.h.patch │ ├── src-lib-gethostbyname.c.patch │ ├── src-lib-syscall.c.patch │ └── torsocks-2.4.0-clang16.patch ├── toxic │ ├── build.sh │ └── cfg-checks-audio.mk.patch ├── tracepath │ ├── build.sh │ └── tracepath.c.patch ├── traceroute │ ├── build.sh │ └── traceroute-flowlabel.h.patch ├── translate-shell │ └── build.sh ├── transmission │ ├── build.sh │ ├── fix_paths.patch │ └── no_quota.patch ├── tree │ ├── build.sh │ └── strverscmp.patch ├── trojan-go │ └── build.sh ├── trurl │ ├── build.sh │ └── increment-version-0.8.patch ├── trzsz-go │ └── build.sh ├── tsmuxer │ ├── build.sh │ └── tsMuxer-osdep-textSubtitlesRenderFT.cpp.patch ├── tsocks │ ├── 00_patch_from_1.8beta5-9.2.patch │ ├── 01_symbolexport.patch │ ├── 02_hyphenfix.patch │ ├── 03_fixloop.patch │ ├── 04_getpeername.patch │ ├── 05_config_in_home.patch │ ├── 06_fallback.patch │ ├── 07_tsocks-1.8_beta5-hostname-config-fix.patch │ ├── 08_manpages-fixes.patch │ ├── 10_hardening.patch │ ├── build.sh │ ├── configure-clang16.patch │ ├── configure.patch │ ├── no-static-linking.patch │ ├── tsocks.c.patch │ └── tsocks.patch ├── tsu │ ├── TMPDIR.patch │ └── build.sh ├── ttf-dejavu │ └── build.sh ├── tty-clock │ ├── LICENSE.patch │ ├── Makefile.patch │ └── build.sh ├── tty-solitaire │ ├── Makefile.patch │ ├── build.sh │ └── tty-solitaire.patch ├── ttyc │ └── build.sh ├── ttyd │ └── build.sh ├── ttyper │ └── build.sh ├── ttyplot │ └── build.sh ├── ttyrec │ ├── LICENSE.patch │ ├── Makefile.patch │ ├── build.sh │ └── ttyrec.c.patch ├── tur-repo │ ├── build.sh │ └── tur.gpg ├── tut │ └── build.sh ├── tvheadend │ ├── build.sh │ ├── define_memalign.patch │ ├── disable-mmx-sse2 │ ├── src-input-mpegts-iptv-iptv_file.c.patch │ ├── time_64.patch │ └── tvheadend-data.subpackage.sh ├── tweego │ └── build.sh ├── txikijs │ ├── CMakeLists.txt.patch │ ├── CMakeLists.txt.patch.beforehostbuild │ ├── build.sh │ ├── deps-libuv-src-unix-core.c.patch │ ├── deps-libuv-src-unix-internal.h.patch │ └── deps-wasm3-source-m3_api_wasi.c.patch ├── typst │ └── build.sh ├── udftools │ ├── build.sh │ └── pktsetup-pktsetup.c.patch ├── uftrace │ ├── build.sh │ ├── check-deps-Makefile.patch │ ├── cmds-live.c.patch │ ├── cmds-record.c.patch │ ├── configure_out_of_source.patch │ ├── kernel.c.patch │ ├── libmcount-record.c.patch │ ├── libmcount-wrap.c.patch │ ├── pr_warn.patch │ ├── utils-script-luajit.c.patch │ ├── utils-script-python.c.patch │ └── utils-shmem.c.patch ├── ugit │ ├── build.sh │ └── ugit.patch ├── ugrep │ ├── build.sh │ └── dependencies-fix.patch ├── unar │ ├── Makefile.linux.patch │ ├── XADPlatformLinux.m.patch │ ├── XADString.m.patch │ ├── build.sh │ └── sys_time.c ├── unicode-data │ ├── build.sh │ └── copyright.html ├── unicorn │ ├── build.sh │ ├── disable-cpuid.patch │ ├── fix-endian.h.patch │ ├── fix-int128-detect.patch │ └── unicorn-arch.patch ├── unifdef │ └── build.sh ├── units │ ├── build.sh │ ├── units-cur.subpackage.sh │ ├── units.c.patch │ └── units.h.patch.debug ├── unixodbc │ ├── build.sh │ └── fix-hardcoded-paths.patch ├── unpaper │ └── build.sh ├── unrar │ ├── build.sh │ ├── makefile.patch │ └── os.hpp.patch ├── unshield │ └── build.sh ├── unzip │ ├── bugfix-cve-2014-8139-crc32.patch │ ├── bugfix-cve-2014-8140-test_compr_eb.patch │ ├── bugfix-cve-2014-8141-getZip64Data.patch │ ├── bugfix-cve-2014-9636.patch │ ├── bugfix-cve-2014-9913-overflow-fsize.patch │ ├── bugfix-cve-2015-7696-csiz-underflow.patch │ ├── bugfix-cve-2015-7696-nextbyte-overflow.patch │ ├── bugfix-cve-2015-7697-empty-input.patch │ ├── bugfix-cve-2016-9844-zipinfo-buffer-overflow.patch │ ├── bugfix-cve-2018-1000035-unzip-buffer-overflow.patch │ ├── bugfix-cve-2018-18384.patch │ ├── bugfix-cve-2019-13232-1-fix-bug-in-undefer-input.patch │ ├── bugfix-cve-2019-13232-2-zip-bomb-with-overlapped-entries.patch │ ├── bugfix-cve-2019-13232-3-do-not-raise-alert-for-misplaced-central-directory.patch │ ├── bugfix-cve-2019-13232-4-fix-bug-in-uzbunzip2.patch │ ├── bugfix-cve-2019-13232-5-fix-bug-in-uzinflate.patch │ ├── bugfix-cve-2022-0529-and-cve-2022-0530.patch │ ├── bugfix-fix-uid-gid-handling.patch │ ├── bugfix-handle-pkware-verification-bit.patch │ ├── bugfix-hostver.patch │ ├── bugfix-symlink.patch │ ├── bugfix-timestamp.patch │ ├── bugfix-warning-big-files.patch │ ├── bugfix-zipgrep-avoid-test-errors.patch │ ├── build.sh │ ├── makefile.patch │ ├── unix-configure.patch │ └── unzip.c.patch ├── up │ └── build.sh ├── update-info-dir │ ├── build.sh │ ├── update-info-dir.8.patch │ └── update-info-dir.patch ├── upx │ ├── build.sh │ └── src-util-snprintf.patch ├── urdfdom-headers │ └── build.sh ├── urdfdom │ └── build.sh ├── usbmuxd │ └── build.sh ├── utf8cpp │ └── build.sh ├── utf8proc │ ├── Makefile.patch │ └── build.sh ├── utfdecode │ └── build.sh ├── uthash │ └── build.sh ├── util-linux │ ├── blk-utils.subpackage.sh │ ├── build.sh │ ├── fdisk.subpackage.sh │ ├── fix-paths.patch │ ├── lib-ismounted.c.patch │ ├── libblkid.subpackage.sh │ ├── libfdisk.subpackage.sh │ ├── libmount.subpackage.sh │ ├── libsmartcols.subpackage.sh │ ├── libuuid.subpackage.sh │ ├── misc-utils-lsfd-sock-xinfo.c.patch │ ├── mount-utils.subpackage.sh │ ├── sys-utils-ipcmk.c.patch │ ├── sys-utils-ipcutils.c.patch │ ├── sys-utils-ipcutils.h.patch │ ├── sys-utils-irq-common.patch │ ├── uuid-utils.subpackage.sh │ └── versionsort.patch ├── uucp │ ├── build.sh │ └── configure-clang16.patch ├── uwsgi │ ├── build.sh │ ├── core-lock.c.patch │ ├── core-spooler.c.patch │ ├── core-utils.c.patch │ ├── core-uwsgi.c.patch │ ├── plugins-corerouter-corerouter.c.patch │ ├── plugins-router_basicauth-router_basicauth.c.patch │ ├── sys_time.c │ ├── uwsgi.h.patch │ └── uwsgiconfig.py.patch ├── v2ray │ ├── 0001-fix-config-paths.patch │ ├── 0002-change-geoip-path.patch │ └── build.sh ├── valac │ ├── build.sh │ ├── valadoc-static.subpackage.sh │ └── valadoc.subpackage.sh ├── vale │ └── build.sh ├── valgrind │ ├── Makefile.all.am.patch │ ├── Makefile.tool.am.patch │ ├── aarch64-setjmp.S │ ├── aarch64_have_lse_atomics.patch │ ├── android-memcpy.patch │ ├── build.sh │ ├── coregrind-vgdb.c.patch │ ├── coregrindmake.am.diff │ ├── dont-redefine-elf32_nhdr.patch │ ├── libcsetjmp.h.patch │ ├── memcheckmake.am.diff │ ├── no-statx.patch │ └── vg_preloaded.c.patch ├── vamp-plugin-sdk │ ├── Makefile.in.patch │ └── build.sh ├── vbindiff │ └── build.sh ├── vcsh │ └── build.sh ├── vde2 │ ├── build.sh │ └── pthread_cancel.patch ├── vegeta │ └── build.sh ├── vera │ └── build.sh ├── vgmstream │ └── build.sh ├── vgmtools │ └── build.sh ├── viddy │ └── build.sh ├── vifm │ ├── build.sh │ ├── cmd_completion.c.patch │ ├── configure.ac.patch │ ├── src-registers.c.patch │ ├── src-utils-path.c.patch │ └── src-utils-shmem_nix.c.patch ├── vile │ └── build.sh ├── vim-python │ ├── build.sh │ ├── option.c.patch │ ├── runtime-syntax-sh.vim.patch │ ├── src-auto-configure.patch │ ├── src-evalfunc.c.patch │ ├── src-os_unix.h.patch │ ├── vimrc │ ├── vimtutor.patch │ └── vterm_internal.h.patch ├── vim │ ├── build.sh │ ├── option.c.patch │ ├── runtime-syntax-sh.vim.patch │ ├── src-auto-configure.patch │ ├── src-evalfunc.c.patch │ ├── src-os_unix.h.patch │ ├── vim-runtime.subpackage.sh │ ├── vimrc │ ├── vimtutor.patch │ └── vterm_internal.h.patch ├── virustotal-cli │ └── build.sh ├── vis │ └── build.sh ├── vitetris │ ├── build.sh │ ├── configure.patch │ └── src-menu-netplay.c.patch ├── viu │ └── build.sh ├── vivid │ ├── build.sh │ └── src-main.rs.patch ├── vlc │ ├── build.sh │ ├── configure.ac.patch │ ├── disable-fdsan.patch │ ├── modules-audio_output-Makefile.am.patch │ ├── modules-codec-Makefile.am.patch │ ├── modules-keystore-Makefile.am.patch │ ├── modules-keystore-file_crypt.h.patch │ ├── modules-video_output-Makefile.am.patch │ ├── modules-video_output-xcb-x11.c.patch │ ├── src-Makefile.am.patch │ ├── src-network-getaddrinfo.c.patch │ └── src-posix-filesystem.c.patch ├── vobsub2srt │ ├── CMakeLists.txt.patch │ └── build.sh ├── vorbis-tools │ ├── build.sh │ └── vorbis-tools-1.4.2-clang16.patch ├── vtm │ ├── build.sh │ └── netxs-desktopio-logger.hpp.patch ├── vttest │ └── build.sh ├── vtutils │ └── build.sh ├── vulkan-extension-layer │ └── build.sh ├── vulkan-headers │ └── build.sh ├── vulkan-loader-android │ └── build.sh ├── vulkan-loader-generic │ ├── 0001-fix-hardcoded-pathes.patch │ ├── 0002-properly-enable-extensions.patch │ └── build.sh ├── vulkan-loader │ └── build.sh ├── vulkan-tools │ ├── build.sh │ └── no-android.patch ├── vulkan-utility-libraries │ ├── 0001-do-not-build-for-android.patch │ └── build.sh ├── vulkan-volk │ └── build.sh ├── w3m │ ├── LICENSE.patch │ ├── Makefile.in.patch │ ├── Str.h.patch │ ├── build.sh │ ├── configure.patch │ ├── fdsan-fd-fix.patch │ ├── fix-hardcoded-paths.patch │ ├── gc.h │ └── w3m-img.subpackage.sh ├── wabt │ └── build.sh ├── wakatime-cli │ └── build.sh ├── walk │ └── build.sh ├── wasi-libc │ └── build.sh ├── wasmedge │ ├── build.sh │ ├── cmake-Helper.cmake.patch │ ├── fix-for-arm.patch │ ├── lib-host-wasi-linux.h.patch │ └── lib-system-allocator.cpp.patch ├── wasmer │ └── build.sh ├── wasmtime │ └── build.sh ├── watchexec │ └── build.sh ├── waypipe │ ├── build.sh │ ├── meson.build.patch │ ├── src-meson.build.patch │ ├── src-platform.c.patch │ ├── src-util.c.patch │ └── src-waypipe.c.patch ├── wcalc │ └── build.sh ├── wdiff │ └── build.sh ├── websocat │ └── build.sh ├── websocketd │ └── build.sh ├── weechat-matrix-rs │ └── build.sh ├── weechat │ ├── build.sh │ ├── cmake-FindGCRYPT.cmake.patch │ ├── cmake-FindGettext.cmake.patch │ ├── cmake-FindPerl.cmake.patch │ ├── no-setuid.patch │ ├── src-core-wee-config.c.patch │ ├── src-core-weechat.c.patch │ ├── src-gui-curses-CMakeLists.txt.patch │ ├── weechat-lua-plugin.subpackage.sh │ ├── weechat-perl-plugin.subpackage.sh │ ├── weechat-python-plugin.subpackage.sh │ └── weechat-ruby-plugin.subpackage.sh ├── weggli │ └── build.sh ├── wego │ └── build.sh ├── wget │ ├── build.sh │ └── tmpdir-path.patch ├── wget2 │ ├── build.sh │ └── fix-hardcoded-paths.patch ├── wgetpaste │ ├── build.sh │ └── fixpath.patch ├── which │ └── build.sh ├── whitebox-tools │ └── build.sh ├── whois │ ├── Makefile.patch │ └── build.sh ├── wireguard-tools │ ├── android.c.patch │ └── build.sh ├── wiz │ ├── Makefile.patch │ └── build.sh ├── woff2 │ └── build.sh ├── wol │ ├── build.sh │ ├── lib-getline.h.patch │ └── src-magic.c.patch ├── wordgrinder │ ├── Makefile.patch │ ├── build.lua.patch │ ├── build.sh │ └── zip.c.patch ├── wren │ ├── build.sh │ ├── libuv-sys-include.patch │ └── projects-make-wren_cli.make.patch ├── wrk │ ├── Makefile.patch │ ├── build.sh │ └── crash-fix.patch ├── wtfutil │ └── build.sh ├── wuzz │ └── build.sh ├── x11-repo │ └── build.sh ├── xcb-proto │ ├── build.sh │ └── python-xcbgen.subpackage.sh ├── xdelta3 │ └── build.sh ├── xh │ └── build.sh ├── xmake │ └── build.sh ├── xmlsec │ └── build.sh ├── xmlstarlet │ ├── build.sh │ └── src-xml_elem.c.patch ├── xmlto │ ├── build.sh │ └── xmlif-xmlif.c.patch ├── xmppc │ └── build.sh ├── xorg-util-macros │ ├── build.sh │ └── xorg-macros.m4.in.patch ├── xorgproto │ ├── build.sh │ ├── include-x11-Xos_r.h.patch │ ├── include-x11-Xpoll.h.in.patch │ └── meson.build.patch ├── xorriso │ ├── build.sh │ └── wait3.patch ├── xpup │ └── build.sh ├── xtrans │ ├── build.sh │ ├── xtrans-1.3.5_Xtransutil.c.patch │ ├── xtrans-1.4.0_Xtranslcl.c.patch │ └── xtrans-1.4.0_Xtranssock.c.patch ├── xvidcore │ └── build.sh ├── xxhash │ └── build.sh ├── yadm │ └── build.sh ├── yajl │ └── build.sh ├── yara │ └── build.sh ├── yarn │ └── build.sh ├── yasm │ └── build.sh ├── yosys │ ├── Makefile.patch │ ├── build.sh │ ├── kernel-yosys.cc.patch │ └── techlibs-easic-synth_easic.cc.patch ├── youtubedr │ └── build.sh ├── yq │ └── build.sh ├── ytfzf │ ├── Makefile.patch │ ├── build.sh │ └── ytfzf.patch ├── ytui-music │ ├── build.sh │ └── front-end-src-ui-event.rs.patch ├── yuma123 │ ├── build.sh │ ├── netconf-man-netconf-subsystem.1.patch │ ├── netconf-man-netconfd.1.patch │ ├── netconf-man-yangcli.1.patch │ ├── netconf-man-yangdiff.1.patch │ ├── netconf-man-yangdump.1.patch │ ├── netconf-src-agt-agt.h.patch │ ├── netconf-src-agt-agt_ncxserver.h.patch │ ├── netconf-src-mgr-mgr_ses.c.patch │ ├── netconf-src-ncx-ncxconst.h.patch │ ├── netconf-src-ncx-ncxmod.c.patch │ ├── netconf-src-ncx-ncxmod.h.patch │ ├── netconf-src-ncx-val.c.patch │ ├── netconf-src-subsys-netconf-subsystem.c.patch │ ├── netconf-src-yangcli-yangcli.h.patch │ ├── netconf-src-yangdiff-yangdiff.h.patch │ ├── netconf-src-yangrpc-example-yangrpc-example.c.patch │ ├── netconf-src-yangrpc-example-yangrpc-parse-example.c.patch │ └── netconf-src-ydump-yangdump.h.patch ├── z-push │ ├── build.sh │ ├── config-apache2-z-push-autodiscover.conf.patch │ ├── config-apache2-z-push.conf.patch │ ├── src-autodiscover-config.php.patch │ ├── src-backend-imap-config.php.patch │ ├── src-backend-imap-imap.php.patch │ ├── src-backend-kopano-checkshares.php.patch │ ├── src-backend-kopano-config.php.patch │ ├── src-backend-kopano-listfolders.php.patch │ ├── src-backend-vcarddir-config.php.patch │ └── src-config.php.patch ├── z3 │ ├── build.sh │ └── scripts-mk_util.py.patch ├── zbar │ ├── build.sh │ └── java-Makefile.am.patch ├── zellij │ ├── build.sh │ └── prefix.patch ├── zeronet │ ├── build.sh │ ├── installer.sh │ ├── zeronet.conf │ └── zeronet.sh ├── zig │ ├── build.patch │ ├── build.sh │ ├── zig-lib-libc-musl-src.patch │ └── zig-lib-std-os-linux.zig.patch ├── zile │ ├── build.sh │ └── zile-2.6.2-incompatible-function-pointer-types.patch ├── zip │ ├── build.sh │ ├── makefile.patch │ └── unix-configure.patch ├── zipios │ └── build.sh ├── zlib │ ├── build.sh │ └── force-support-shared-library.patch ├── zls │ └── build.sh ├── znc │ ├── build.sh │ └── src-main.cpp.patch ├── zoxide │ └── build.sh ├── zpaq │ ├── Makefile.patch │ └── build.sh ├── zsh-completions │ └── build.sh ├── zsh │ ├── Src-exec.c.patch │ ├── build.sh │ ├── compaudit.patch │ ├── compinit.patch │ ├── configure.patch │ ├── disable-fdsan.patch │ ├── etc-zshrc │ ├── man-path.patch │ ├── no-priv-calls.patch │ ├── src-glob.c.patch │ ├── src-init.c.patch │ ├── src-module.c.patch │ └── tmp_path.patch ├── zssh │ ├── Makefile.in.patch │ ├── build.sh │ ├── escape.c.patch │ ├── misc.c.patch │ ├── openpty.c.patch │ ├── quote_removal.c.patch │ └── zmodem_act.c.patch ├── zstd │ ├── build-meson-contrib-meson.build.patch │ ├── build.sh │ └── pzstd.subpackage.sh ├── zsync │ └── build.sh ├── zziplib │ ├── build.sh │ └── zziplib-0.13.72-fix-int-conversion.patch └── zzuf │ ├── build.sh │ ├── src-zzat.c.patch │ └── src-zzuf.c.patch ├── patch.patch ├── repo.json ├── root-packages ├── arp-scan │ ├── Makefile.am.patch │ ├── arp-scan.h.patch │ ├── build.sh │ └── hsearch │ │ ├── README.md │ │ ├── hcreate.c │ │ ├── hcreate_r.c │ │ ├── hdestroy_r.c │ │ ├── hsearch.h │ │ ├── hsearch_r.c │ │ └── search.h ├── authbind │ ├── Makefile.patch │ ├── build.sh │ ├── helper.c.patch │ └── libauthbind.c.patch ├── avahi │ ├── avahi-autoipd-main.c.patch │ ├── avahi-common-malloc.h.patch │ ├── avahi-daemon-main.c.patch │ ├── avahi-daemon-sftp-ssh.service.patch │ ├── avahi-daemon-ssh.service.patch │ ├── avahi-daemon.conf.patch │ ├── build.sh │ ├── configure.ac.patch │ ├── libdns-sd-static.subpackage.sh │ └── libdns-sd.subpackage.sh ├── avrdude │ └── build.sh ├── bindfs │ ├── build.sh │ └── getpwent.patch ├── bubblewrap │ ├── build.sh │ └── swap-getcwd-func.patch ├── containerd │ ├── Makefile.patch │ ├── build.sh │ ├── bundle.go.patch │ ├── config.toml │ ├── database.go.patch │ ├── defaults_unix.go.patch │ └── fix-paths.patch ├── dnsmasq │ ├── Makefile.patch │ ├── build.sh │ └── dnsmasq.h.patch ├── docker-compose │ └── build.sh ├── docker │ ├── build.sh │ ├── config.go.patch │ ├── daemon.json │ ├── database.go.patch │ ├── dockerd.sh │ ├── fix-paths.patch │ ├── hardcode-runtime.GOOS.patch │ ├── resolvconf.patch │ └── socket-path.patch ├── encfs │ └── build.sh ├── erofs-utils │ └── build.sh ├── ethtool │ └── build.sh ├── ettercap │ ├── CMakeLists.txt.patch │ ├── build.sh │ ├── cmake-Modules-EttercapLibCheck.cmake.patch │ ├── cmake-Modules-EttercapOSTest.cmake.patch │ ├── ettercap-0.8.3.1-libcurl-8.patch │ ├── include-ec_threads.h.patch │ ├── src-ec_threads.c.patch │ └── src-ec_ui.c.patch ├── frida │ ├── Makefile.linux.mk.patch │ ├── build.sh │ ├── debug-build.patch.debug │ ├── driver-wrapper-android.sh.in.patch │ ├── frida-dev.subpackage.sh │ ├── frida-python-src-_frida.c.patch │ ├── frida-python-src-meson.build.patch │ ├── frida-python-version.diff │ ├── frida-python.subpackage.sh │ ├── frida-resource-compiler.patch │ └── setup-env.sh.patch ├── gocryptfs │ └── build.sh ├── gptfdisk │ └── build.sh ├── hping3 │ ├── Makefile.in.patch │ ├── build.sh │ ├── bytesex.h.patch │ ├── configure.patch │ ├── hstring.h.patch │ ├── libpcap_stuff.c.patch │ ├── scan.c.patch │ └── script.c.patch ├── hw-probe │ ├── build.sh │ └── hw-probe.pl.patch ├── hwinfo │ ├── Makefile.patch │ ├── build.sh │ ├── src-hd-bios.c.patch │ ├── src-hd-mdt.c.patch │ ├── src-hd-sys.c.patch │ ├── src-hd-wlan.c.patch │ ├── src-ids-Makefile.patch │ ├── src-isdn-cdb-Makefile.patch │ └── src-isdn-isa-probe.c.patch ├── iodine │ ├── 000-fix-name-clashes.patch │ ├── 002-fix-ifconfig-path.patch │ ├── 003-no-systemd-selinux.patch │ └── build.sh ├── ipset │ └── build.sh ├── iptables │ ├── build.sh │ ├── extensions-libxt_LOG.c.patch │ ├── extensions-libxt_cgroup.c.patch │ ├── iptables-Makefile.in.patch │ ├── iptables-xtables-monitor.c.patch │ ├── libxtables-Makefile.in.patch │ └── syslog-names.h ├── iw │ └── build.sh ├── keyutils │ ├── Makefile.patch │ ├── build.sh │ └── fix-hardcoded-paths.patch ├── libaio │ ├── Makefile.patch │ ├── build.sh │ └── src-Makefile.patch ├── libccid │ └── build.sh ├── libcryptsetup │ ├── build.sh │ ├── cryptsetup.subpackage.sh │ └── fix-loopdev-path.patch ├── libfuse2 │ ├── build.sh │ ├── lib-fuse.c.patch │ └── lib-fuse_loop_mt.c.patch ├── libfuse3 │ ├── build.sh │ ├── example-poll.c.patch │ ├── example-printcap.c.patch │ ├── lib-fuse.c.patch │ ├── lib-fuse_i.h.patch │ ├── lib-fuse_loop_mt.c.patch │ ├── lib-meson.build.patch │ ├── meson.build.patch │ ├── test-test_setattr.c.patch │ └── util-install_helper.sh.patch ├── libnetfilter-queue │ ├── build.sh │ ├── fix-missing-define-ipv4.patch │ ├── fix-missing-define.patch │ └── fix-redefinition.patch ├── libnfnetlink │ ├── build.sh │ └── fix-libnetfilter-queue.patch ├── libpcsclite │ ├── build.sh │ └── pcscd.subpackage.sh ├── libx86emu │ ├── Makefile.patch │ ├── build.sh │ └── mem.c.patch ├── lvm2 │ ├── build.sh │ ├── libdevmapper.subpackage.sh │ └── tools-command.c.patch ├── lxc │ ├── build.sh │ ├── lxc-setup-cgroups.sh │ ├── src-include-lxcmntent.c.patch │ ├── src-lxc-cgroups-cgfsng.c.patch │ ├── src-lxc-conf.c.patch │ ├── src-lxc-pam-pam_cgfs.c.patch │ ├── templates-lxc-download.in.patch │ ├── templates-lxc-local.in.patch │ └── templates-lxc-oci.patch ├── macchanger │ ├── autogen.sh.patch │ └── build.sh ├── minikube │ └── build.sh ├── mtr │ ├── build.sh │ ├── hsearch.patch │ ├── hsearch │ │ ├── README.md │ │ ├── hcreate.c │ │ ├── hcreate_r.c │ │ ├── hdestroy_r.c │ │ ├── hsearch.h │ │ ├── hsearch_r.c │ │ └── search.h │ ├── index_to_strchr.patch │ └── packet.c.patch ├── nethogs │ └── build.sh ├── nexttrace-enhanced │ └── build.sh ├── nfs-utils │ ├── build.sh │ ├── fix-hardcoded-paths.patch │ ├── nfs-utils-2.5.2-no-werror.patch │ ├── strverscmp.c │ ├── support-export-export.c.patch │ ├── support-nfs-conffile.c.patch │ ├── support-nfs-rpcmisc.c.patch │ ├── support-nfs-svc_socket.c.patch │ ├── support-nfsidmap-libnfsidmap.c.patch │ ├── support-reexport-backend_sqlite.c.patch │ ├── tools-nfsrahead-Makefile.am.patch │ ├── utils-mount-nfsumount.c.patch │ └── versionsort.c ├── ntfs-3g │ ├── build.sh │ ├── fix-hardcoded-path.patch │ ├── fix-symlink.patch │ └── remove-ldconfig.patch ├── open-zwave │ ├── Makefile.patch │ ├── build.sh │ └── support.mk.patch ├── openvpn │ ├── build.sh │ ├── src-openvpn-console_builtin.c.patch │ ├── src-openvpn-options.c.patch │ └── src-openvpn-tun.c.patch ├── pciutils │ ├── 3.10.0 │ │ ├── config.h.in │ │ └── config.mk.in │ ├── Makefile.patch │ └── build.sh ├── pixiewps │ ├── avoid-conflict-with-system-tomcrypt.patch │ └── build.sh ├── runc │ ├── build.sh │ ├── cg-cpuset-noprefix-compat.patch │ ├── libcontainer-container_linux.go.patch │ ├── libcontainer-nsenter-cloned_binary.c.patch │ └── root-dir-path.patch ├── squashfuse │ ├── Makefile.am.patch │ └── build.sh ├── sshfs │ ├── build.sh │ ├── line-max.patch │ └── sftp_path.patch ├── tcpdump │ ├── build.sh │ └── configure.patch ├── tcplay-veracrypt │ ├── build.sh │ └── makedev.patch ├── termshark │ └── build.sh ├── testdisk │ ├── build.sh │ └── no-static.patch ├── tinc │ ├── build.sh │ └── fix-tun-device-path.patch ├── tshark │ ├── FindDOXYGEN.cmake.patch │ ├── build.sh │ ├── caputils-ws80211.c.patch │ ├── paths.patch │ └── ws_pipe.c.patch ├── v4l-utils │ ├── build.sh │ ├── getsubopt.c │ ├── getsubopt.h │ ├── getsubopt.patch │ ├── no-android.patch │ ├── no-posix-shm.patch │ ├── no-udev.patch │ └── pthread_cancel.patch ├── vlan │ ├── build.sh │ ├── debian-network-if-pre-up.d-vlan.patch │ └── vconfig.patch ├── wavemon │ ├── Makefile.in.patch │ ├── build.sh │ ├── configure.patch │ ├── iw_nl80211.h.patch │ ├── pthread_cancel.patch │ └── utils.c.patch ├── wireless-tools │ ├── Makefile.patch │ ├── build.sh │ └── iwlib.c.patch ├── wpa-supplicant │ ├── Makefile.patch │ ├── browser.c.patch │ ├── build.sh │ ├── defconfig.patch │ ├── doc-paths.patch │ ├── main.c.patch │ ├── tncs.c.patch │ └── wpa_ctrl.c.patch └── zmap │ ├── build.sh │ ├── default-blocklist-path.patch │ ├── use-yacc.patch │ └── util-setaffinity.patch ├── sample ├── build.sh └── sample-sub.subpackage.sh ├── scripts ├── Dockerfile ├── Dockerfile.cgct ├── Vagrantfile ├── aptly_api.sh ├── big-pkgs.list ├── bin │ ├── add-to-path.sh │ ├── apt-compare-versions │ ├── check-auto-update │ ├── check-pie.sh │ ├── ldd │ ├── revbump │ ├── update-checksum │ └── update-packages ├── build-bootstraps.sh ├── build │ ├── configure │ │ ├── termux_step_configure.sh │ │ ├── termux_step_configure_autotools.sh │ │ ├── termux_step_configure_cmake.sh │ │ ├── termux_step_configure_haskell_build.sh │ │ └── termux_step_configure_meson.sh │ ├── get_source │ │ ├── termux_download_src_archive.sh │ │ ├── termux_git_clone_src.sh │ │ ├── termux_step_get_source.sh │ │ └── termux_unpack_src_archive.sh │ ├── setup │ │ ├── cmake-c-compiler.patch │ │ ├── meson-libintl.patch │ │ ├── meson-python.patch │ │ ├── meson-soversion.patch │ │ ├── python-crossenv-PYTHONPATH.patch │ │ ├── termux_setup_cabal.sh │ │ ├── termux_setup_cargo_c.sh │ │ ├── termux_setup_cmake.sh │ │ ├── termux_setup_crystal.sh │ │ ├── termux_setup_flang.sh │ │ ├── termux_setup_ghc.sh │ │ ├── termux_setup_ghc_cross_compiler.sh │ │ ├── termux_setup_gir.sh │ │ ├── termux_setup_gn.sh │ │ ├── termux_setup_golang.sh │ │ ├── termux_setup_jailbreak_cabal.sh │ │ ├── termux_setup_meson.sh │ │ ├── termux_setup_ninja.sh │ │ ├── termux_setup_no_integrated_as.sh │ │ ├── termux_setup_nodejs.sh │ │ ├── termux_setup_protobuf.sh │ │ ├── termux_setup_python_pip.sh │ │ ├── termux_setup_rust.sh │ │ ├── termux_setup_swift.sh │ │ ├── termux_setup_xmake.sh │ │ └── termux_setup_zig.sh │ ├── termux_create_debian_subpackages.sh │ ├── termux_create_pacman_subpackages.sh │ ├── termux_download.sh │ ├── termux_download_deb_pac.sh │ ├── termux_error_exit.sh │ ├── termux_extract_dep_info.sh │ ├── termux_get_repo_files.sh │ ├── termux_step_create_debian_package.sh │ ├── termux_step_create_pacman_install_hook.sh │ ├── termux_step_create_pacman_package.sh │ ├── termux_step_create_subpkg_debscripts.sh │ ├── termux_step_create_timestamp_file.sh │ ├── termux_step_extract_into_massagedir.sh │ ├── termux_step_finish_build.sh │ ├── termux_step_get_dependencies.sh │ ├── termux_step_get_dependencies_python.sh │ ├── termux_step_handle_buildarch.sh │ ├── termux_step_handle_hostbuild.sh │ ├── termux_step_host_build.sh │ ├── termux_step_install_license.sh │ ├── termux_step_install_service_scripts.sh │ ├── termux_step_make.sh │ ├── termux_step_make_install.sh │ ├── termux_step_massage.sh │ ├── termux_step_override_config_scripts.sh │ ├── termux_step_patch_package.sh │ ├── termux_step_replace_guess_scripts.sh │ ├── termux_step_setup_build_folders.sh │ ├── termux_step_setup_cgct_environment.sh │ ├── termux_step_setup_toolchain.sh │ ├── termux_step_setup_variables.sh │ ├── termux_step_start_build.sh │ └── toolchain │ │ ├── termux_setup_toolchain_23c.sh │ │ ├── termux_setup_toolchain_26b.sh │ │ └── termux_setup_toolchain_gnu.sh ├── buildorder.py ├── check-built-packages.py ├── check-versions.sh ├── config.guess ├── config.sub ├── generate-bootstraps.sh ├── get_hash_from_file.py ├── lint-packages.sh ├── list-packages.sh ├── list-versions.sh ├── openjdk-r-ppa.gpg ├── profile.json ├── properties.sh ├── run-docker.ps1 ├── run-docker.sh ├── setup-android-sdk.sh ├── setup-archlinux.sh ├── setup-cgct.sh ├── setup-offline-bundle.sh ├── setup-termux-glibc.sh ├── setup-termux.sh ├── setup-ubuntu.sh ├── test-runner.sh ├── update-docker.ps1 ├── update-docker.sh ├── updates │ ├── api │ │ ├── dump-repology-data │ │ ├── termux_github_api_get_tag.sh │ │ ├── termux_gitlab_api_get_tag.sh │ │ └── termux_repology_api_get_latest_version.sh │ ├── internal │ │ ├── termux_github_auto_update.sh │ │ ├── termux_gitlab_auto_update.sh │ │ └── termux_repology_auto_update.sh │ ├── termux_pkg_auto_update.sh │ └── utils │ │ ├── termux_error_exit.sh │ │ ├── termux_pkg_is_update_needed.sh │ │ └── termux_pkg_upgrade_version.sh └── utils │ ├── docker │ └── docker.sh │ └── package │ └── package.sh └── x11-packages ├── 2bwm ├── LICENSE.2bwm ├── LICENSE.hidden ├── Makefile.patch └── build.sh ├── abiword ├── abiword-3.0.4-enchant-2.patch ├── build.sh ├── configure.ac.patch ├── gir │ └── 3.0.5 │ │ └── Abi-3.0.xml ├── plugin-configure.m4.patch ├── plugins-command-xp-AbiCommand.cpp.patch ├── src-af-xap-xp-xap_Dialog.cpp.patch └── src-wp-ap-gtk-ap_UnixApp.cpp.patch ├── adwaita-icon-theme-legacy ├── build.sh └── debian-move-subset.py.patch ├── adwaita-icon-theme └── build.sh ├── adwaita-qt └── build.sh ├── angle-android ├── args.gn.in └── build.sh ├── appstream-glib ├── build.sh ├── gir │ └── 0.8.2 │ │ └── AppStreamGlib-1.0.xml └── libappstream-builder-plugins-meson.build.patch ├── ardour ├── ardour-data.subpackage.sh ├── atomic.patch ├── build.sh ├── dynamic_pointer_cast.patch ├── fix-hardcoded-paths.patch ├── fix-platform.patch ├── gtk2_ardour-ardour.sh.in.patch ├── libs-ardour-port_manager.cc.patch ├── no-alsa.patch ├── pthread_attr_setinheritsched.patch ├── pthread_cancel.patch └── wscript.patch ├── arqiver └── build.sh ├── at-spi2-atk └── build.sh ├── aterm ├── aterm-1.0.1_autoconf_Make.common.in.patch ├── aterm-1.0.1_src_command.c.patch ├── aterm-1.0.1_src_feature.h.patch ├── aterm-1.0.1_src_rxvt.h.patch └── build.sh ├── atk └── build.sh ├── audacious-plugins ├── build.sh └── configure-pkg-config.patch ├── audacious └── build.sh ├── audacity ├── CMakeLists.txt.patch ├── audacity-ffmpeg.subpackage.sh ├── build.sh ├── cmake-proxies-portaudio-v19-CMakeLists.txt.patch ├── cmake-proxies-portmidi-CMakeLists.txt.patch ├── cmake-proxies-wxWidgets-CMakeLists.txt.patch ├── ffmpeg-configure.patch ├── lib-src-libnyquist-nyquist-cmt-midifns.c.patch ├── lib-src-libnyquist-nyquist-xlisp-security.c.patch ├── modules-mod-script-pipe-CMakeLists.txt.patch ├── modules-mod-script-pipe-PipeServer.cpp.patch ├── src-AudacityApp.cpp.patch ├── src-AudioIOBase.cpp.patch ├── src-CMakeLists.txt.patch ├── src-FFmpeg.h.patch └── src-MixerBoard.cpp.patch ├── awesome ├── awesomeConfig.cmake.patch ├── build.sh ├── lua-wrapper.in └── pregen │ ├── awesomerc.lua │ ├── docs │ ├── 05-awesomerc.md │ ├── 06-appearance.md │ └── common │ │ ├── client_rules_index.ldoc │ │ ├── notification_rules_index.ldoc │ │ ├── screen_rules_index.ldoc │ │ └── tag_rules_index.ldoc │ └── script_files │ ├── rc.lua │ └── theme.lua ├── ayatana-ido ├── build.sh └── gir │ └── AyatanaIdo3-0.4.xml ├── azpainter ├── build.sh └── install.sh.in.patch ├── bdftopcf └── build.sh ├── bluefish ├── build.sh ├── g_callback.patch └── src-bookmark.c.patch ├── bochs ├── build.sh ├── bx_debug-Makefile.in.patch ├── configure.patch ├── gui-term.cc.patch └── iodev-network-slirp-misc.cc.patch ├── boomerang ├── build.sh ├── cmake-scripts-boomerang-flags.cmake.patch └── src-boomerang-core-Project.cpp.patch ├── bspwm ├── build.sh └── fix-hardcoded-path.patch ├── cairo-dock-core ├── build.sh └── src-gldit-CMakeLists.txt.patch ├── caja ├── build.sh └── libcaja-private-caja-file.c.patch ├── cantata ├── build.sh ├── no_udisks2.patch └── use_termux_path.patch ├── cherrytree ├── build.sh └── src-ct-ct_const.h.patch ├── chocolate-doom ├── build.sh └── fix-tmpdir.patch ├── clutter-gst ├── build.sh └── gir │ └── 3.0.27 │ └── ClutterGst-3.0.xml ├── clutter-gtk ├── build.sh └── gir │ └── 1.8.4 │ └── GtkClutter-1.0.xml ├── clutter ├── build.sh ├── clutter-Makefile.in.patch └── gir │ └── 1.26.4 │ ├── Cally-1.0.xml │ ├── Clutter-1.0.xml │ ├── ClutterGdk-1.0.xml │ └── ClutterX11-1.0.xml ├── codeblocks ├── backport-r11938.diff ├── backport-r11991.diff ├── backport-r12190.diff ├── backport-r12281.diff ├── backport-r12305.diff ├── backport-r12312.diff ├── backport-r12511.diff ├── backport-r12532.diff ├── backport-r12578.diff ├── backport-r12579.diff ├── backport-r12580.diff ├── backport-r12592.diff ├── backport-r12707.diff ├── backport-r12841.diff ├── backport-r12842.diff ├── build.sh ├── codeblocks-data.subpackage.sh ├── r12190.diff.diff ├── src-mime-Makefile.am.patch └── src-sdk-scripting-bindings-sc_wxtypes.cpp.patch ├── cogl ├── build.sh └── gir │ └── 1.22.8 │ ├── Cogl-1.0.xml │ ├── Cogl-2.0.xml │ ├── CoglPango-1.0.xml │ └── CoglPango-2.0.xml ├── cuse ├── build.sh ├── configure.ac.patch ├── src-CuSE.cxx.patch └── src-sequencer.h.patch ├── dbus-glib └── build.sh ├── dconf └── build.sh ├── deadbeef ├── build.sh ├── deadbeef-1.9.2-drop-Werror.patch ├── fix-underlinking.patch ├── junklib.c.patch └── threading_pthread.c.patch ├── debpac ├── build.sh └── debpac.pro.patch ├── desktop-file-utils ├── build.sh └── hooks │ ├── postinst.in │ ├── postrm.in │ └── triggers.in ├── devilspie ├── build.sh ├── fix_manpage_lintian_warnings.patch ├── fix_memleak_in_my_wnck_get_viewport_start.patch ├── fix_using_deprecated_wnck_functions.patch └── remove_unavailable_options_from_manpage.patch ├── devilspie2 └── build.sh ├── dmenu ├── build.sh ├── config.mk.patch ├── dmenu.c-check-for-locale-support.patch └── fix-hardcoded-paths.patch ├── dosbox-x ├── build.sh ├── dosbox-x-data.subpackage.sh ├── fix-hardcoded-paths.patch └── src-libs-porttalk-porttalk.cpp.patch ├── dosbox └── build.sh ├── dunst ├── build.sh └── prefix.patch ├── dwm ├── build.sh ├── config.def.h.patch └── config.mk.patch ├── emacs-x ├── Makefile.patch ├── build.sh ├── disable-fdsan.patch ├── lib-src-emacsclient.c.patch ├── lib-stdio-impl.h.patch ├── lisp-cus-start.el.patch.beforehostbuild ├── lisp-loadup.el-2.patch.beforehostbuild ├── lisp-net-tramp.el.patch.beforehostbuild ├── lisp-server.el.patch.beforehostbuild ├── lisp-term.el.patch.beforehostbuild ├── lisp-textmodes-ispell.el.patch.beforehostbuild ├── lisp.Makefile.in.patch ├── no-procent_n-android.patch ├── no_user_fullname.patch ├── site-init.el ├── src-callproc.c.patch ├── src-fileio.c.patch └── src-filelock.c.patch ├── eog ├── build.sh ├── eog-help.subpackage.sh ├── gir │ └── 44.3 │ │ └── Eog-3.0.xml └── meson.build.patch ├── epiphany ├── build.sh ├── getrandom.patch └── meson.build.patch ├── evince ├── build.sh ├── evince-help.subpackage.sh ├── gir │ ├── EvinceDocument-3.0.xml │ └── EvinceView-3.0.xml └── meson.build.patch ├── eww ├── build.sh └── fix_tmp_hardcoded_path.patch ├── exo └── build.sh ├── extra-cmake-modules └── build.sh ├── far2l ├── NetRocks-src-Protocol-SSH-SSHConnection.cpp.patch ├── WinPort-src-Backend-WinPortMain.cpp.patch ├── build.sh ├── far2l-plugins-netrocks.subpackage.sh ├── far2l-src-cfg-ConfigSaveLoad.cpp.patch ├── far2l-src-setattr.cpp.patch ├── far2l-ttyxi.subpackage.sh ├── multiarc-CMakeLists.txt.patch ├── multiarc-src-formats-7z-C.patch └── multiarc-src-formats-rar-unrar-os.hpp.patch ├── fcitx5-configtool ├── build.sh └── fix-hardcoded-path.patch ├── fcitx5-gtk-common ├── build.sh ├── fcitx-gclient_CMakeLists.txt.patch ├── fcitx5-gtk2.subpackage.sh ├── fcitx5-gtk3.subpackage.sh └── fcitx5-gtk4.subpackage.sh ├── fcitx5-qt └── build.sh ├── fcitx5 ├── build.sh ├── cmake-FindDL.cmake.patch ├── cmake-FindPthread.cmake.patch ├── fcitx5-data.subpackage.sh ├── fix-hardcoded-paths.patch └── src-modules-spell-CMakeLists.txt.patch ├── feathernotes └── build.sh ├── featherpad └── build.sh ├── feh ├── build.sh ├── feh-3.0_src_Makefile.patch ├── feh-3.0_src_events.c.patch ├── feh-3.0_src_filelist.c.patch ├── feh-3.0_src_imlib.c.patch ├── feh-3.0_src_keyevents.c.patch ├── feh-3.0_src_options.c.patch └── feh-3.0_src_slideshow.c.patch ├── ffplay ├── build.sh └── configure.patch ├── file-roller ├── build.sh └── meson.build.patch ├── firefox ├── build.sh ├── firefox.desktop ├── firefox.patch ├── fix-arm-build.patch ├── fix-sigbus.patch ├── icu-74.patch ├── rust.configure.patch ├── shared_memory_posix.cc.patch └── system-libevent.patch ├── flacon ├── build.sh ├── gui-controls.cpp.patch └── gui-mainwindow.cpp.patch ├── florence ├── build.sh └── src-controller.c.patch ├── fltk ├── 01-no-tests.patch ├── 03-fix-hardcoded-paths.patch ├── 04-fix-libxrandr-dlopen.patch └── build.sh ├── fluent-gtk-theme └── build.sh ├── fluent-icon-theme └── build.sh ├── fluxbox ├── build.sh ├── fluxbox-1.3.7_src_FbCommands.cc.patch ├── fluxbox-1.3.7_src_main.cc.patch ├── fluxbox-1.3.7_util_fbrun_FbRun.cc.patch ├── fluxbox-1.3.7_util_fluxbox-generate_menu.in.patch ├── fluxbox-1.3.7_util_fluxbox-remote.cc.patch └── fluxbox-1.3.7_util_startfluxbox.in.patch ├── fontforge-gtk ├── build.sh ├── fontforge-cvundoes.c.patch ├── fontforgeexe-displayfonts.c.patch ├── fontforgeexe-lookupui.c.patch ├── fontforgeexe-prefs.c.patch └── gutils-fsys.c.patch ├── foot ├── 0001-fix-wayland-scanner-path.patch └── build.sh ├── freeglut ├── build.sh ├── src-fg_internal.h.patch └── src-x11-fg_main_x11.c.patch ├── freerdp ├── 0001-pthread_cancel.patch ├── 0002-use-cross-wayland-scanner.patch ├── 0003-posix-shm.patch ├── 0004-incompatible-function-pointer-types.patch ├── 0005-fix-hardcoded-paths.patch ├── 0006-read-timezone.patch └── build.sh ├── fritzing ├── build.sh ├── fritzing-0.9.6-quazip1.patch ├── fritzing-data.subpackage.sh └── phoenix.pro.patch ├── fvwm ├── build.sh ├── configure.ac.patch ├── fvwm-2.7.0-clang16-0001.patch ├── fvwm-2.7.0-clang16-0002.patch ├── fvwm-2.7.0-libX11-1.8.1.patch └── fvwm-session.c.patch ├── galculator └── build.sh ├── garcon ├── build.sh └── gir │ └── 4.18.1 │ ├── Garcon-1.0.xml │ └── GarconGtk-1.0.xml ├── gcr ├── build.sh ├── gir │ └── 3.41.1 │ │ ├── Gck-1.xml │ │ ├── Gcr-3.xml │ │ └── GcrUi-3.xml └── meson_post_install.py.patch ├── gcr4 ├── build.sh └── gir │ └── 4.1.0 │ ├── Gck-2.xml │ └── Gcr-4.xml ├── geany-plugins └── build.sh ├── geany ├── build.sh ├── geany-1.33_ctags_main_routines.c.patch ├── geany-1.33_src_build.c.patch ├── geany-1.33_src_keyfile.c.patch └── geany-1.33_src_printing.c.patch ├── ghex ├── build.sh ├── gir │ └── Hex-4.xml ├── meson.build.patch └── src-main.c.patch ├── gigolo └── build.sh ├── gimp-lqr-plugin └── build.sh ├── gimp ├── build.sh └── gimp-data.subpackage.sh ├── gjots2 ├── bin-gjots2.patch └── build.sh ├── glade ├── build.sh ├── fix-open-redef.patch ├── gir │ └── 3.40.0 │ │ └── Gladeui-2.0.xml └── meson.build.patch ├── glew ├── Makefile.patch ├── build.sh └── termux-glew-support.patch ├── glfw ├── build.sh ├── src-CMakeLists.txt.patch └── src-x11_init.c.patch ├── glmark2 └── build.sh ├── glu ├── LICENSE └── build.sh ├── gnome-desktop3 ├── build.sh └── gir │ └── 44.0 │ └── GnomeDesktop-3.0.xml ├── gnome-desktop4 ├── build.sh └── gir │ └── 44.0 │ ├── GnomeBG-4.0.xml │ ├── GnomeDesktop-4.0.xml │ └── GnomeRR-4.0.xml ├── gnome-font-viewer ├── build.sh ├── fix-build-against-gnome-desktop-42.0.patch ├── fix-build-with-meson-0.60.0.patch └── meson.build.patch ├── gnome-themes-extra ├── build.sh ├── gtk2-engines-adwaita-static.subpackage.sh └── gtk2-engines-adwaita.subpackage.sh ├── gnumeric ├── build.sh ├── configure.patch ├── gir │ └── 1.12.55 │ │ └── Gnm-1.12.xml ├── gnumeric-help.subpackage.sh ├── gnumeric-python.subpackage.sh ├── introspection-Makefile.in.patch └── plugins-python-loader-Makefile.in.diff ├── godot ├── build.sh ├── crypto_core.cpp.patch ├── crypto_mbedtls.cpp.patch ├── decode.c.patch ├── detect.py.patch ├── main.cpp.patch ├── platform_utils.hpp.patch ├── primitive_attr.cpp.patch ├── remove-android-log.patch ├── set_brotli.patch ├── set_dir.patch ├── set_handle_dlopen.patch ├── state.h.patch ├── thread.cpp.patch ├── tls_context_mbedtls.h.patch ├── upnp.cpp.patch ├── upnp.h.patch └── upnp_device.cpp.patch ├── goffice ├── build.sh └── gir │ └── 0.10.55 │ └── GOffice-0.10.xml ├── gpg-crypter └── build.sh ├── gsettings-desktop-schemas ├── build.sh └── meson.build.patch ├── gspell ├── build.sh ├── configure.patch └── gir │ └── Gspell-1.xml ├── gtk-doc └── build.sh ├── gtk2-engines-murrine ├── build.sh └── gtk2-engines-murrine-0.98.2-implicit-functions.patch ├── gtk2 ├── build.sh ├── gir │ └── 2.24.33 │ │ ├── Gdk-2.0.xml │ │ ├── GdkX11-2.0.xml │ │ └── Gtk-2.0.xml ├── glib-tools-fix.patch ├── gtk-2.24.32_demos_testpixbuf-color.c.patch ├── gtk-2.24.32_docs_tools_widgets.c.patch ├── gtk-2.24.32_gdk_Makefile.am.patch ├── gtk-2.24.32_gtk_gtkfilesel.c.patch ├── gtk-2.24.32_modules_printbackends_cups_gtkprintbackendcups.c.patch ├── gtk-2.24.32_tests_testfilechooser.c.patch ├── gtk-gtkscale.c.patch ├── hooks │ ├── postinst.in │ ├── postrm.in │ └── triggers.in └── xid-collision-debug.patch ├── gtk3-nocsd ├── build.sh └── gtk3-nocsd.in.patch ├── gtk3 ├── 0001-no-atk-bridge.patch ├── 0002-dont-update-icon-cache.patch ├── 0003-fix-paths.patch ├── 0004-fix-name-conflicts.patch ├── 0005-fix-immodules-linking.patch ├── 0006-fix-libintl.patch ├── broadway-server.patch ├── build.sh ├── gdkbroadway-server.patch ├── gir │ └── 3.24.38 │ │ ├── Gdk-3.0.xml │ │ ├── GdkX11-3.0.xml │ │ └── Gtk-3.0.xml ├── gtk-update-icon-cache.subpackage.sh └── hooks │ ├── postinst.in │ ├── postrm.in │ └── triggers.in ├── gtk4 ├── avoid-using-opengl-renderer.patch ├── build.sh ├── gir │ └── 4.10.4 │ │ ├── Gdk-4.0.xml │ │ ├── GdkX11-4.0.xml │ │ ├── Gsk-4.0.xml │ │ └── Gtk-4.0.xml ├── meson.build.patch └── no-egl.patch ├── gtkmm2 └── build.sh ├── gtkmm3 └── build.sh ├── gtkmm4 └── build.sh ├── gtksourceview3 ├── build.sh ├── configure.patch └── gir │ └── 3.24.11 │ └── GtkSource-3.0.xml ├── gtksourceview4 ├── build.sh └── gir │ └── 4.8.4 │ └── GtkSource-4.xml ├── gtkwave ├── build.sh ├── libandroid-shmem.patch └── regex.c.patch ├── gucharmap ├── build.sh ├── gir │ └── 15.1.2 │ │ └── Gucharmap-2.90.xml └── gucharmap-meson.build.patch ├── gvfs ├── build.sh └── meson.build.patch ├── gw ├── build.sh ├── fix-std-filesystem-namespace-issue.patch └── glob_fix.patch ├── handbrake ├── build.sh ├── gtk-module.defs.patch ├── libhb-handbrake-common.h.patch └── make-configure.py.patch ├── heimer └── build.sh ├── hexchat ├── build.sh ├── meson.build.patch └── no-setuid.patch ├── hicolor-icon-theme ├── build.sh └── index.theme ├── hugin └── build.sh ├── i3-gaps └── build.sh ├── i3 ├── build.sh ├── i3-4.15_i3-dmenu-desktop.patch ├── i3-4.15_i3bar_src_main.c.patch ├── i3-4.15_libi3_get_exe_path.c.patch ├── i3-4.15_libi3_get_process_filename.c.patch ├── i3-4.15_libi3_ipc_connect.c.patch ├── i3-4.15_src_sighandler.c.patch └── posix-shm-implementation.patch ├── i3status ├── build.sh ├── etc-i3status.conf.patch ├── i3status.c.patch ├── include-i3status.h.patch ├── meson.build.patch └── src-print_disk_info.c.patch ├── inkscape ├── build.sh ├── fix-hardcoded-paths.patch ├── inkscape-extensions.subpackage.sh ├── inkscape-tutorials.subpackage.sh ├── no-stacktrace.patch ├── page-size-fix.patch └── src-object-object-set.cpp.patch ├── iso-codes ├── Makefile.in.patch └── build.sh ├── jwm └── build.sh ├── karchive └── build.sh ├── kauth ├── Android-Support.patch └── build.sh ├── kcodecs └── build.sh ├── kconfig └── build.sh ├── kcoreaddons ├── build.sh ├── no_redefinition_kuser_unix.patch └── src-mimetypes-CMakeLists.txt.patch ├── keepassxc ├── build.sh ├── src-core-FileWatcher.cpp.patch └── src-gui-entry-EntryView.cpp.patch ├── kermit └── build.sh ├── keybinder ├── build.sh └── gir │ └── 0.3.2 │ └── Keybinder-3.0.xml ├── kguiaddons └── build.sh ├── ki18n ├── build.sh ├── src-CMakeLists.txt.patch └── without-qtandroidextras.patch ├── kid3 └── build.sh ├── kirigami2 ├── 0001-Revert-Watch-for-language-change-events-and-forward-.patch ├── build.sh ├── fix_incomplete_types.patch ├── no_opengl.patch ├── src-libkirigami-kirigamipluginfactory.cpp.patch ├── treat_android_as_linux.patch └── without_accessibility.patch ├── kitemmodels └── build.sh ├── kitemviews └── build.sh ├── kitty ├── build.sh ├── glfw-x11_window.c.patch ├── kitty-cross-platform-random.h.patch ├── kitty-safe-wrappers.h.patch ├── posix-shm.c.in ├── reallocarray.c └── setup.py.patch ├── komorebi ├── CMakeLists.txt.patch ├── build.sh ├── extra-wallpaper-creator-OnScreen-InitialPage.vala.patch ├── komorebi-data.subpackage.sh └── src-Utilities.vala.patch ├── kvantum └── build.sh ├── kwidgetsaddons ├── build.sh └── src-kpassworddialog.cpp.patch ├── kwindowsystem └── build.sh ├── l3afpad └── build.sh ├── leafpad └── build.sh ├── lenmus ├── CMakeLists.txt.patch ├── build.sh └── use-pulseaudio.patch ├── libadwaita ├── build.sh ├── gir │ └── 1.3.3 │ │ └── Adw-1.xml └── meson.build.patch ├── libart-lgpl └── build.sh ├── libatkmm-1.6 └── build.sh ├── libayatana-appindicator ├── build.sh ├── gir │ └── AyatanaAppIndicator3-0.1.xml └── src-app-indicator.symbols.patch ├── libayatana-indicator └── build.sh ├── libcanberra ├── build.sh └── src-Makefile.in.patch ├── libdazzle ├── build.sh ├── gir │ └── 3.44.0 │ │ └── Dazzle-1.0.xml ├── meson.build.patch └── src-util-dzl-counter.c.patch ├── libdbusmenu-qt └── build.sh ├── libdbusmenu ├── build.sh ├── gir │ └── 16.04.0 │ │ ├── Dbusmenu-0.4.xml │ │ └── DbusmenuGtk3-0.4.xml ├── libdbusmenu-gtk3-static.subpackage.sh └── libdbusmenu-gtk3.subpackage.sh ├── libepoxy ├── build.sh └── libepoxy-1.5.3_src_dispatch_common.c.patch ├── libevdev ├── build.sh └── tools-Makefile.am.patch ├── libfakekey └── build.sh ├── libfm-extra ├── build.sh ├── fix-hardcoded-paths.patch └── terminals.list.patch ├── libfm-qt ├── build.sh └── fhs_termux_prefix.patch ├── libfm ├── build.sh ├── fix-hardcoded-paths.patch └── terminals.list.patch ├── libfontenc └── build.sh ├── libglade ├── build.sh └── libglade-2.0.1-nowarning.patch ├── libgnomecanvas └── build.sh ├── libgtksourceviewmm-3.0 └── build.sh ├── libhandy-0.0 ├── build.sh └── gir │ └── 0.0.13 │ └── Handy-0.0.xml ├── libhandy ├── build.sh └── gir │ └── 1.8.2 │ └── Handy-1.xml ├── liblxqt ├── add_missing_wordexp.patch └── build.sh ├── libmatekbd ├── build.sh └── genmarshal.patch ├── libmateweather └── build.sh ├── libneatvnc ├── 0001-getrandom.patch ├── 0002-aligned_alloc.patch └── build.sh ├── libnotify ├── build.sh └── gir │ └── Notify-0.7.xml ├── libpciaccess ├── build.sh └── ndk.patch ├── libpeas ├── build.sh ├── gir │ └── 1.36.0 │ │ ├── Introspection-1.0.xml │ │ ├── Peas-1.0.xml │ │ └── PeasGtk-1.0.xml └── meson.build.patch ├── libportal ├── build.sh ├── gir │ ├── Xdp-1.0.xml │ ├── XdpGtk3-1.0.xml │ └── XdpGtk4-1.0.xml ├── libportal-gtk3.subpackage.sh ├── libportal-gtk4.subpackage.sh ├── libportal-qt5.subpackage.sh └── use-glib-mkenums.patch ├── libqtxdg ├── build.sh └── xdgdirs_termux_prefix.patch ├── libsysstat └── build.sh ├── libunique ├── build.sh └── gir │ └── 3.0.2 │ └── Unique-3.0.xml ├── libvncserver ├── build.sh ├── libvncclient.pc.cmakein.patch └── libvncserver.pc.cmakein.patch ├── libvte ├── build.sh ├── gir │ └── 0.74.1 │ │ ├── Vte-2.91.xml │ │ └── Vte-3.91.xml └── src-missing.cc.patch ├── libwnck ├── build.sh └── gir │ └── 43.0 │ └── Wnck-3.0.xml ├── libxaw ├── build.sh ├── src-Makefile.in.patch └── src-pixmap.c.patch ├── libxcomposite └── build.sh ├── libxcvt └── build.sh ├── libxdamage └── build.sh ├── libxfce4ui ├── build.sh ├── dont-update-icon-cache.patch └── gir │ └── 4.18.4 │ └── Libxfce4ui-2.0.xml ├── libxfce4util ├── build.sh ├── gir │ └── 4.18.1 │ │ └── Libxfce4util-1.0.xml └── xfce-resource.c.patch ├── libxfont2 ├── build.sh └── libXfont2-2.0.1_src_fc_fslibos.h.patch ├── libxinerama └── build.sh ├── libxkbcommon ├── build.sh └── disable_tests.patch ├── libxkbfile └── build.sh ├── libxklavier ├── build.sh ├── libxklavier-Makefile.am.patch └── tmpnam.patch ├── libxml++-2.6 └── build.sh ├── libxmu └── build.sh ├── libxpm └── build.sh ├── libxpresent └── build.sh ├── libxres └── build.sh ├── libxxf86dga └── build.sh ├── lite-xl ├── build.sh └── meson.build.patch ├── loqui ├── build.sh ├── loqui-0.6.4_libloqui_loqui_webutils.c.patch └── loqui-0.7.0-clang16.patch ├── love ├── build.sh ├── src-common-config.h.patch ├── src-libraries-physfs-physfs_platform_unix.c.patch └── src-modules-sound-lullaby-GmeDecoder.h.patch ├── lxappearance └── build.sh ├── lxde-icon-theme └── build.sh ├── lximage-qt └── build.sh ├── lxmenu-data └── build.sh ├── lxqt-about └── build.sh ├── lxqt-archiver └── build.sh ├── lxqt-build-tools └── build.sh ├── lxqt-composer-settings └── build.sh ├── lxqt-config └── build.sh ├── lxqt-globalkeys └── build.sh ├── lxqt-menu-data └── build.sh ├── lxqt-notificationd └── build.sh ├── lxqt-openssh-askpass └── build.sh ├── lxqt-panel └── build.sh ├── lxqt-qtplugin └── build.sh ├── lxqt-runner ├── add_missing_wordexp.patch ├── build.sh └── no_mathitem.patch ├── lxqt-session ├── android_support.patch ├── build.sh └── support_termux_path.patch ├── lxqt-themes └── build.sh ├── lxqt └── build.sh ├── lxtask └── build.sh ├── lyx ├── build.sh └── lyx-data.subpackage.sh ├── marco └── build.sh ├── matchbox-keyboard └── build.sh ├── mate-applet-brisk-menu └── build.sh ├── mate-common └── build.sh ├── mate-desktop └── build.sh ├── mate-menus └── build.sh ├── mate-panel └── build.sh ├── mate-session-manager └── build.sh ├── mate-settings-daemon ├── build.sh ├── plugins-a11y-keyboard-Makefile.in.patch └── plugins-a11y-keyboard-msd-a11y-keyboard-atspi.c.patch ├── mate-terminal ├── build.sh ├── genmarshal.patch └── m4-macros.patch ├── menu-cache └── build.sh ├── mesa-demos ├── 0001-fix-KHR-define.patch ├── LICENSE ├── build.sh ├── eglinfo-system.subpackage.sh ├── osmesa-demos.subpackage.sh └── src-tests-texdown.c.patch ├── mgba └── build.sh ├── milkytracker └── build.sh ├── mindforger ├── app-app.pro.patch ├── build.sh └── lib-src-gear-file_utils.cpp.patch ├── mkvtoolnix └── build.sh ├── mogan ├── build.sh ├── mogan-data.subpackage.sh ├── qmake.sh ├── src-Scheme-S7-s7.c.patch └── xmake.lua.patch ├── motif ├── Makefile.in.patch ├── build.sh ├── clients-mwm-WmError.h.patch ├── fix-hardcoded-paths.patch ├── lib-Xm-Makefile.in.patch ├── lib-Xm-XpmI.h.patch ├── lib-Xm-Xpmcreate.c.patch ├── lib-Xm-Xpmparse.c.patch ├── tools-wml-Makefile.in.patch └── tools-wml-wmlparse.y.patch ├── mousepad └── build.sh ├── mpv-x ├── build.sh └── mpv.conf ├── mtdev └── build.sh ├── mtpaint ├── build.sh ├── configure.patch └── fix-hardcoded-paths.patch ├── mumble-server ├── build.sh ├── scripts-mumble-server-user-wrapper.patch └── src-murmur-UnixMurmur.cpp.patch ├── ncspot-mpris └── build.sh ├── netsurf └── build.sh ├── news-flash-gtk ├── build.sh └── webkit2gtk-sys.diff ├── nitrogen └── build.sh ├── nxengine ├── Makefile.linux.patch ├── build.sh └── resource-paths.patch ├── obconf-qt └── build.sh ├── obconf ├── build.sh └── obconf-2.0.4-clang16.patch ├── ocs-url ├── build.sh └── scripts-prepare.patch ├── olivia └── build.sh ├── oneko-sakura ├── build.sh └── oneko.c.patch ├── openbox ├── Theme-Onyx-Black │ └── openbox-3 │ │ └── themerc ├── build.sh ├── configs │ ├── autostart │ ├── environment │ ├── menu.xml │ └── rc.xml ├── openbox-termux-compat.patch ├── openbox-title-matching.patch └── scripts │ ├── openbox-autostart │ ├── openbox-session │ └── openbox-xdg-autostart ├── opensubdiv ├── build.sh ├── opensubdiv-3.5.0-tbb-2021.patch └── opensubdiv-osd-CMakeLists.txt.patch ├── openttd-gfx └── build.sh ├── openttd-msx └── build.sh ├── openttd-sfx └── build.sh ├── openttd ├── build.sh ├── src-3rdparty-squirrel-squirrel-sqvm.cpp.patch └── src-ini.cpp.patch ├── orca └── build.sh ├── oshu └── build.sh ├── otter-browser ├── 3rdparty_fhs_termux_prefix.patch └── build.sh ├── papirus-icon-theme └── build.sh ├── parole └── build.sh ├── pavucontrol-qt └── build.sh ├── pcmanfm-qt └── build.sh ├── pcmanfm └── build.sh ├── pcsx-rearmed ├── build.sh ├── configure.patch ├── libpicofe_menu.c.patch ├── libpicofe_plat.c.patch ├── libpicofe_plat.h.patch ├── main.c.patch ├── main.h.patch └── menu.c.patch ├── phantomjs └── build.sh ├── picom └── build.sh ├── pidgin ├── build.sh ├── sasl_callback-proc.patch └── tcl_tk_support.patch ├── pinentry-gtk ├── build.sh ├── pinentry-emacs.c.patch └── pinentry-pinentry-curses.c.patch ├── plotutils ├── build.sh └── libpng-fix.patch ├── polybar ├── build.sh └── termux-prefix.patch ├── polyphone ├── build.sh ├── sources-context-audiodevice.cpp.patch └── sources-polyphone.pro.patch ├── pong2 ├── build.sh └── configure.ac.patch ├── poppler-qt ├── build.sh ├── force-termux-include-dirs.patch └── gstrtod.cc.patch ├── praat ├── build.sh ├── makefile.defs.patch └── soundcard.h-path.patch ├── pulseeffects ├── build.sh ├── fix-type-of-local-variables.patch └── meson.build.patch ├── putty ├── build.sh ├── fix-hardcoded-paths.patch ├── no-priv-drop.patch └── putty-tools.subpackage.sh ├── pyatspi └── build.sh ├── pyqt5 ├── build.sh ├── cxx-wrapper ├── pylupdate5.in ├── pyrcc5.in └── pyuic5.in ├── python-pyqtwebengine ├── build.sh └── cxx-wrapper ├── python-qscintilla ├── build.sh └── cxx-wrapper ├── qb64 ├── build.sh ├── no-no-pie.patch └── setup_lnx.sh.patch ├── qcustomplot └── build.sh ├── qemu-system-x86-64 ├── 0000-android-config-support.patch ├── 0001-fix-hardcoded-paths.patch ├── 0002-fix-soundcard.h-location.patch ├── 0003-fix-time_nsec-defs.patch ├── 0004-add-missing-telldir-seekdir.patch ├── 0005-add-missing-sigorset.patch ├── 0006-fix-sem.h-location.patch ├── 0007-fix-syscalls.patch ├── 0008-fix-struct-member-conflicts.patch ├── 0009-fix-mman.h-defs.patch ├── 0010-disable-glob.h-include.patch ├── 0011-misc-build-fixes.patch ├── 0012-add-missing-arch_prctl.patch ├── 0013-mmap_min_addr-fallback.patch ├── 0014-force-ucs2-little-endian.patch ├── 0015-9pfs-dont-chmod-mapfile.patch ├── 0016-disable-signalfd.patch ├── 0017-find-gdbus-codegen.patch ├── build.sh ├── qemu-7.1.0-linux-user-mmap.c.patch ├── qemu-system-aarch64.subpackage.sh ├── qemu-system-arm.subpackage.sh ├── qemu-system-i386.subpackage.sh ├── qemu-system-m68k.subpackage.sh ├── qemu-system-ppc.subpackage.sh ├── qemu-system-ppc64.subpackage.sh ├── qemu-system-riscv32.subpackage.sh ├── qemu-system-riscv64.subpackage.sh └── setjmp-aarch64 │ ├── private-bionic_asm.h │ ├── private-bionic_asm_arm64.h │ ├── private-bionic_constants.h │ └── setjmp.S ├── qgit └── build.sh ├── qscintilla ├── build.sh └── no_accessibility.patch ├── qt-creator ├── android_is_linux_without_excinfo.patch ├── build.sh ├── clangpchmanagerbackend.patch ├── disable_experimental_or_unuseful_plugins.patch ├── host_bin_lupdate.patch ├── loosen_android_abi_compat_check.patch ├── malloc_trim.patch ├── qtsingleapplication_no_shared_memory.patch ├── rpath.patch └── without_tracing_util.patch ├── qt5-qmake ├── build.sh ├── prebuilt.tar.xz └── termux-build-qmake.sh ├── qt5-qtbase ├── build.sh ├── glib_gtk_detection_without_pkgconfig.patch ├── linux.conf.patch ├── lld-16.patch ├── postinst ├── qmake.conf ├── qmake.host.conf ├── qplatformdefs.host.h ├── qt5-qtbase-cross-tools.subpackage.sh ├── qt5-qtbase-gtk-platformtheme.subpackage.sh ├── qtbase-src_corelib_io_qfilesystemengine_unix_android_defs.patch ├── qtbase_mkspecs_termux-cross_qplatformdefs.h.patch ├── qtbase_mkspecs_termux_qmake.conf.patch ├── qtbase_mkspecs_termux_qplatformdefs.h.patch ├── qtbase_src_corelib_global_qsystemdetection.h.patch ├── qtbase_src_corelib_thread_qthread_unix_android_defs.patch ├── qtbase_src_network_kernel_qdnslookup_unix_res_state_struct.patch ├── qtbase_src_network_kernel_qhostinfo_unix_res_state_struct.patch ├── qtemporaryfile_no_unnamedfile_android.patch ├── src-tools-moc-generator.cpp.patch ├── ssl_certificate_path.patch ├── use_posix_ipc.patch └── xkbcommon-1.6.0.patch ├── qt5-qtdeclarative ├── build.sh ├── postinst ├── qt5-qtdeclarative-cross-tools.subpackage.sh └── src-3rdparty-masm-yarr-yarrcanonicalize.h.patch ├── qt5-qtgraphicaleffects ├── build.sh └── no-opengl.patch ├── qt5-qtlocation └── build.sh ├── qt5-qtmultimedia ├── build.sh ├── detect_libs_without_pkg_config.patch ├── gst_include_path.patch └── pulse_audio_without_glib.patch ├── qt5-qtquickcontrols └── build.sh ├── qt5-qtquickcontrols2 ├── build.sh ├── src-quicktemplates2-accessible-qaccessiblequickpage.cpp.patch └── src-quicktemplates2-accessible-qaccessiblequickpage_p.h.patch ├── qt5-qtscript ├── 3rdparty-javascriptcore-yarr-RegexJIT.patch └── build.sh ├── qt5-qtsensors └── build.sh ├── qt5-qtserialport ├── build.sh └── src-serialport-qserialport_unix.cpp.patch ├── qt5-qtsvg └── build.sh ├── qt5-qttools ├── assistant.desktop ├── build.sh ├── designer.desktop ├── linguist.desktop ├── postinst ├── qdbusviewer.desktop ├── qt5-qttools-cross-tools.subpackage.sh └── src-designer-src-uitools-uitools.pro.patch ├── qt5-qtwebchannel └── build.sh ├── qt5-qtwebengine ├── 0001-no-glibc-check.patch ├── 0002-no-pkgconfig-for-qmake.patch ├── 0003-chromium-use-android-target.patch ├── 0004-qt5-qtwebengine-workaround-aarch64-build-failure.patch ├── 0005-breakpad-no-elf_prstatus.patch ├── 0006-chromium-no-execinfo.patch ├── 0007-qmake-use-dummy-sysroot.patch ├── 0008-chromium-no-futimes.patch ├── 0009-supplement-the-condition-for-strerror_r-in-bionic.patch ├── 0010-chromium-no-priority-inheritance-locks.patch ├── 0011-chromium-impl-dns.patch ├── 0012-crashpad-no-memfd.patch ├── 0013-chromium-disable-shm.patch ├── 0014-crashpad-no-getdtablesize.patch ├── 0015-chromium-redefine-termios2.patch ├── 0016-blink-impl-wtf-stacksize.patch ├── 0017-chromium-no-set-process-title.patch ├── 0018-egl-fix-include.patch ├── 0019-android-no-valloc-on-64-bits.patch ├── 0020-fix-linking-flag.patch ├── 0021-do-not-use-system-harfbuzz.patch ├── 0022-do-not-use-neon.patch ├── 0023-ffmpeg-disable-asm-for-i686.patch ├── 0024-disable-sandbox.patch ├── 0025-v8-trap-handler.patch ├── 0026-do-not-use-udev.patch ├── 9999-generate-ffmpeg-headers.patch.beforehostbuild └── build.sh ├── qt5-qtwebkit ├── 0001-Remove-invalid-g_object-declarations-to-fix-build-wi.patch ├── __x86.get_pc_thunk.bx.patch ├── build.sh ├── icu-68.patch ├── no_execinfo_header.patch ├── qtwebkit-5.212.0-alpha4-bison-3.7.patch ├── tools_qttestbrowser_launcherwindow_no_opengl.patch └── webkit-bwo141288.patch ├── qt5-qtwebsockets └── build.sh ├── qt5-qtx11extras └── build.sh ├── qt5-qtxmlpatterns └── build.sh ├── qt5ct ├── build.sh └── host_lrelease.patch ├── qterminal └── build.sh ├── qtermwidget ├── build.sh └── utmp_android.patch ├── qtutilities ├── build.sh └── no-android.patch ├── qtxdg-tools └── build.sh ├── quassel ├── 0001-avoid-deduplication-of-users-CXXFLAGS.patch ├── 0002-recover-cxxflags-from-envvars-after-processing.patch └── build.sh ├── quazip └── build.sh ├── raylib └── build.sh ├── recordmydesktop ├── build.sh ├── fix-tmpdir.patch ├── no-sound-by-default.patch ├── rindex-fn-fix.patch └── soundcard.h-location-fix.patch ├── ristretto └── build.sh ├── rofi └── build.sh ├── roxterm └── build.sh ├── schismtracker └── build.sh ├── scite ├── build.sh ├── lexilla-src-makefile.patch ├── scintilla-gtk-makefile.patch └── scite-gtk-makefile.patch ├── scrcpy └── build.sh ├── scrot ├── build.sh ├── getsubopt.c ├── getsubopt.h └── getsubopt.patch ├── sdl-image └── build.sh ├── sdl-mixer └── build.sh ├── sdl-net └── build.sh ├── sdl-ttf └── build.sh ├── sdl ├── build.sh └── src-SDL12_compat.c.patch ├── sdl2-gfx └── build.sh ├── sdl2-image └── build.sh ├── sdl2-mixer └── build.sh ├── sdl2-net └── build.sh ├── sdl2-pango └── build.sh ├── sdl2-ttf └── build.sh ├── sdl2 ├── build.sh └── configure.patch ├── sfml ├── CMakeLists.txt.patch ├── build.sh ├── cmake-Config.cmake.patch ├── include-SFML-Config.hpp.patch ├── src-SFML-System-Unix-ThreadImpl.cpp.patch └── src-SFML-Window-CMakeLists.txt.patch ├── shared-mime-info ├── build.sh ├── postinst ├── postrm ├── triggers └── update-mime-database.c.patch ├── simulide ├── build.sh ├── simulide-data.subpackage.sh └── src-gpsim-protocol.cc.patch ├── spek ├── autogen.sh.patch └── build.sh ├── spotify-qt ├── CMakeLists.txt.patch ├── build.sh ├── fix-hardcoded-paths.patch └── lib-CMakeLists.txt.patch ├── st ├── android11.patch ├── avoid-libutil.patch ├── build.sh ├── config.def.h.patch └── config.mk.patch ├── startup-notification └── build.sh ├── surf ├── build.sh ├── config.def.h.patch └── config.mk.patch ├── sway ├── 0001-fix-compilation-with-optional-wlroots-features-disabled.patch ├── 0002-fix-include.patch ├── 0003-impl-shm_open.patch ├── 0004-use-cross-wayland-scanner.patch ├── 0005-fix-for-libinput-related-config.patch ├── 0006-fix-hardcoded-patches.patch └── build.sh ├── sxhkd └── build.sh ├── synaptic ├── build.sh ├── common-raptoptions.cc.patch ├── common-rconfiguration.cc.patch ├── common-rpackage.cc.patch ├── common-rpackagefilter.cc.patch ├── common-rpackagelister.cc.patch ├── data-synaptic.desktop.in.patch ├── gtk-gsynaptic.cc.patch ├── gtk-rgdebinstallprogress.cc.patch ├── gtk-rgmainwindow.cc.patch ├── gtk-rgtaskswin.cc.patch └── gtk-rgutils.cc.patch ├── tabbed ├── build.sh ├── config.def.h.patch ├── config.mk.patch └── xembed.1 ├── tageditor ├── build.sh └── cli-helper.cpp.patch ├── tagparser └── build.sh ├── telepathy-glib ├── build.sh ├── configure.patch ├── gir │ └── 0.24.2 │ │ └── TelepathyGLib-0.12.xml └── telepathy-glib-protocol.c.patch ├── termux-x11-nightly └── build.sh ├── texstudio ├── build.sh ├── fix-build-with-quazip1.patch └── texstudio-data.subpackage.sh ├── texworks ├── CMakeLists.txt.patch ├── build.sh ├── fix-findpoppler.patch └── src-CMakeLists.txt.patch ├── the-powder-toy ├── 02-no-install-prompt.patch ├── 03-saves-dir-path.patch ├── 04-no-android.patch └── build.sh ├── thunar-archive-plugin └── build.sh ├── thunar ├── build.sh └── gir │ └── Thunarx-3.0.xml ├── tigervnc-viewer ├── build.sh ├── common-os-Thread.cxx.patch ├── common-rfb-util.h.patch └── tigervnc-1.13.0-disable-server-and-pam.patch ├── tigervnc ├── build.sh ├── tigervnc-1.10.1-boolparam-0.patch ├── tigervnc-1.10.1-clipboard.patch ├── tigervnc-1.10.1-xorg-1.21.patch ├── tigervnc-1.9.0_CMakeLists.txt.patch ├── tigervnc-1.9.0_common_os_Thread.cxx.patch ├── tigervnc-1.9.0_unix_tx_TXDialog.h.patch ├── tigervnc-1.9.0_unix_vncserver.patch ├── tigervnc-1.9.0_unix_xserver_hw_vnc_xvnc.c.patch ├── u_xorg-server-1.20.7-ddxInputThreadInit.patch └── vncserver ├── tilda ├── build.sh └── fix-OOB-write-in-start_default_shell.patch ├── tint2 ├── build.sh └── src-battery-dummy.c.patch ├── tinyemu ├── 001-fix-hardcoded-paths.patch ├── 002-fix-time_nsec-defs.patch ├── 003-Makefile.patch ├── 004-Makefile.patch32 └── build.sh ├── transmission-gtk ├── build.sh ├── fix_paths.patch ├── gtk-Session.cc.patch └── no_quota.patch ├── trojita ├── build.sh └── trojita-0.7-qt-5.15-QPainterPath.patch ├── tsmuxergui └── build.sh ├── tumbler └── build.sh ├── tuxpaint ├── .rebuild ├── Makefile.patch ├── build.sh ├── src-tuxpaint-import.sh.patch ├── src-tuxpaint.conf.patch ├── static-inline.patch └── tuxpaint-data.subpackage.sh ├── uget └── build.sh ├── vala-panel-appmenu ├── build.sh ├── meson.build.patch └── xfce4-appmenu-plugin.subpackage.sh ├── vim-gtk ├── build.sh ├── option.c.patch ├── runtime-syntax-sh.vim.patch ├── src-auto-configure.patch ├── src-evalfunc.c.patch ├── src-os_unix.h.patch ├── vimrc ├── vimtutor.patch └── vterm_internal.h.patch ├── virglrenderer-android ├── 0001-meson-add-new-option-egl_without_gbm-to-enable-build.patch.beforehostbuild ├── 0002-android-build-and-use-egl-platform-on-Android-withou.patch.beforehostbuild ├── 0003-test-angle.patch.beforehostbuild ├── 0004-Fallback-to-ashmem.patch.beforehostbuild ├── 0005-Enable-debug-for-EGL.patch.beforehostbuild ├── 0006-Disable-feature-feat_dual_src_blend.patch.beforehostbuild ├── 0007-Ensure-EGL-and-GLES.patch.beforehostbuild ├── 0008-Change-vtest-socket-path.patch.beforehostbuild ├── 0009-Impl-DXTn-S3TC-texture-decompression-in-virglrenderer.patch.beforehostbuild ├── COPYING-gl4es ├── build.sh └── virgl_test_server_android.in ├── virglrenderer ├── build.sh └── vtest-vtest_protocol.h.patch ├── vlc-qt ├── build.sh ├── configure.ac.patch ├── disable-fdsan.patch ├── modules-audio_output-Makefile.am.patch ├── modules-codec-Makefile.am.patch ├── modules-keystore-Makefile.am.patch ├── modules-keystore-file_crypt.h.patch ├── modules-video_output-Makefile.am.patch ├── modules-video_output-xcb-x11.c.patch ├── src-Makefile.am.patch ├── src-network-getaddrinfo.c.patch └── src-posix-filesystem.c.patch ├── wayvnc ├── 0001-memfd_create.patch └── build.sh ├── webkit2gtk-4.1 ├── NetworkCacheBlobStorage.cpp.patch ├── OptionsCommon.cmake.patch ├── PlatformGTK.cmake.patch ├── SharedMemoryUnix.cpp.patch ├── Source_WebCore_platform_graphics_gstreamer_PlatformDisplayGStreamer.cpp.patch ├── Source_WebCore_xml.patch ├── build.sh ├── gir │ ├── JavaScriptCore-4.1.xml │ ├── WebKit2-4.1.xml │ └── WebKit2WebExtension-4.1.xml ├── jsc.cpp.patch ├── pas_min_heap.h.patch ├── pas_thread_local_cache.c.patch └── webkit2gtk-driver.subpackage.sh ├── webkitgtk-6.0 ├── build.sh └── gir │ └── 2.40.3 │ ├── JavaScriptCore-6.0.xml │ ├── WebKit-6.0.xml │ └── WebKitWebProcessExtension-6.0.xml ├── weston ├── 0002-drop-deps-libinput.patch ├── 0003-drop-deps-pam.patch ├── 0004-drop-deps-libudev.patch ├── 0005-use-cross-wayland-scanner.patch ├── 0006-progname.patch ├── 0007-fix-include.patch ├── 0008-drop-tests.patch └── build.sh ├── wireshark-qt ├── build.sh ├── cmake-system-name.patch ├── fix-hardcoded-paths.patch ├── no-getdtablesize.patch ├── no-legacy-index.patch └── no-qt-accessibility.patch ├── wkhtmltopdf └── build.sh ├── wlroots ├── 0001-make-session-optional.patch ├── 0002-use-cross-wayland-scanner.patch ├── 0003-impl-shm-open.patch ├── 0004-fix-hardcoded-patches.patch └── build.sh ├── wmaker └── build.sh ├── wmctrl └── build.sh ├── wxmaxima └── build.sh ├── wxwidgets ├── build.sh ├── configure.patch ├── include-wx-android-chkconf.h.patch ├── include-wx-android-config_android.h.patch ├── include-wx-wxcrtbase.h.patch ├── include-wx-xlocale.h.patch ├── src-common-filename.cpp.patch ├── src-common-wxcrt.cpp.patch ├── src-gtk-webview_webkit2.cpp.patch └── src-unix-mimetype.cpp.patch ├── x11vnc ├── build.sh └── fix-hardcoded-paths.patch ├── x2x └── build.sh ├── xarchiver ├── build.sh ├── xarchiver-0.5.4.13_src_open-with-dlg.c.patch ├── xarchiver-0.5.4.13_src_pref_dialog.c.patch ├── xarchiver-0.5.4.13_src_socket.c.patch ├── xarchiver-0.5.4.13_src_window.c.patch └── xarchiver-0.5.4.13_src_xdgmime_xdgmime.c.patch ├── xbitmaps └── build.sh ├── xboard ├── build.sh ├── menus.c.patch └── xaw-xboard.c.patch ├── xcb-imdkit └── build.sh ├── xcb-util-cursor └── build.sh ├── xcb-util-image └── build.sh ├── xcb-util-keysyms └── build.sh ├── xcb-util-renderutil └── build.sh ├── xcb-util-wm └── build.sh ├── xcb-util-xrm └── build.sh ├── xcb-util └── build.sh ├── xclip └── build.sh ├── xcompmgr └── build.sh ├── xdg-utils ├── build.sh ├── fix-hardcoded-paths.patch └── scripts-xdg-email.in.patch ├── xdotool └── build.sh ├── xf86-input-void └── build.sh ├── xf86-video-dummy └── build.sh ├── xfce-theme-manager ├── build.sh └── use_termux_prefix.patch ├── xfce4-appfinder └── build.sh ├── xfce4-calculator-plugin └── build.sh ├── xfce4-clipman-plugin └── build.sh ├── xfce4-datetime-plugin └── build.sh ├── xfce4-dev-tools ├── Makefile.am.patch ├── build.sh └── scripts-xdt-autogen.in.patch ├── xfce4-dict └── build.sh ├── xfce4-docklike-plugin ├── build.sh └── src-Hotkeys.cpp.patch ├── xfce4-eyes-plugin └── build.sh ├── xfce4-genmon-plugin └── build.sh ├── xfce4-goodies └── build.sh ├── xfce4-mailwatch-plugin └── build.sh ├── xfce4-netload-plugin └── build.sh ├── xfce4-notes-plugin └── build.sh ├── xfce4-notifyd ├── build.sh └── fix-hardcoded-paths.patch ├── xfce4-panel-profiles └── build.sh ├── xfce4-panel ├── build.sh ├── dont-update-icon-cache.patch └── gir │ └── Libxfce4panel-2.0.xml ├── xfce4-places-plugin └── build.sh ├── xfce4-screensaver ├── build.sh └── fix-hardcoded-paths.patch ├── xfce4-screenshooter └── build.sh ├── xfce4-session ├── build.sh ├── disable-xinit-null-display.patch ├── dont-update-icon-cache.patch └── xfsm-shutdown-fallback.c.patch ├── xfce4-settings ├── build.sh └── dialogs-mouseSettings-main.c.patch ├── xfce4-taskmanager └── build.sh ├── xfce4-terminal └── build.sh ├── xfce4-timer-plugin └── build.sh ├── xfce4-wavelan-plugin └── build.sh ├── xfce4-whiskermenu-plugin └── build.sh ├── xfce4 └── build.sh ├── xfconf ├── build.sh └── gir │ └── Xfconf-0.xml ├── xfdesktop ├── build.sh └── dont-update-icon-cache.patch ├── xfwm4 └── build.sh ├── xkeyboard-config └── build.sh ├── xorg-font-util └── build.sh ├── xorg-fonts-100dpi ├── COPYING └── build.sh ├── xorg-fonts-75dpi ├── COPYING └── build.sh ├── xorg-fonts-alias └── build.sh ├── xorg-fonts-encodings └── build.sh ├── xorg-iceauth ├── build.sh └── process.c.patch ├── xorg-luit ├── build.sh ├── git_fixes.patch └── luit.c.patch ├── xorg-mkfontscale ├── build.sh ├── postinst ├── postrm └── triggers ├── xorg-server-xvfb ├── Xvfb-termux-x11.patch ├── build.sh ├── use_ashmem.patch ├── xorg-protocol-txt.subpackage.sh ├── xorg-server-1.20.1_Xext_xf86bigfont.c.patch ├── xorg-server-1.20.1_hw_xfree86_common_xf86Config.c.patch ├── xorg-server-1.20.1_hw_xfree86_os-support_linux_lnx_acpi.c.patch ├── xorg-server-1.20.1_hw_xfree86_os-support_linux_lnx_kmod.c.patch ├── xorg-server-1.20.1_hw_xfree86_parser_scan.c.patch ├── xorg-server-1.20.1_hw_xfree86_parser_write.c.patch ├── xorg-server-1.20.1_hw_xfree86_xorg-wrapper.c.patch ├── xorg-server-1.20.1_hw_xquartz_mach-startup_bundle-main.c.patch ├── xorg-server-1.20.1_hw_xwin_InitOutput.c.patch ├── xorg-server-1.20.1_os_access.c.patch ├── xorg-server-1.20.1_os_backtrace.c.patch ├── xorg-server-1.20.1_os_osinit.c.patch ├── xorg-server-1.20.1_os_utils.c.patch └── xorg-server-1.20.1_xkb_ddxLoad.c.patch ├── xorg-server ├── build.sh ├── disable-modesetting.patch ├── kd.patch ├── linux_noop.patch ├── platform_noop.c.patch ├── stubmain.c.patch ├── use_ashmem.patch ├── xf86AutoConfig.c.patch ├── xorg-server-1.20.1_Xext_xf86bigfont.c.patch ├── xorg-server-1.20.1_hw_xfree86_common_compiler.h.patch ├── xorg-server-1.20.1_hw_xfree86_common_xf86Config.c.patch ├── xorg-server-1.20.1_hw_xfree86_os-support_linux_lnx_acpi.c.patch ├── xorg-server-1.20.1_hw_xfree86_os-support_linux_lnx_kmod.c.patch ├── xorg-server-1.20.1_hw_xfree86_parser_scan.c.patch ├── xorg-server-1.20.1_hw_xfree86_parser_write.c.patch ├── xorg-server-1.20.1_hw_xfree86_xorg-wrapper.c.patch ├── xorg-server-1.20.1_os_access.c.patch ├── xorg-server-1.20.1_os_backtrace.c.patch ├── xorg-server-1.20.1_os_osinit.c.patch ├── xorg-server-1.20.1_os_utils.c.patch ├── xorg-server-1.20.1_xkb_ddxLoad.c.patch ├── xorg-server-xephyr.subpackage.sh └── xorg.conf ├── xorg-setxkbmap └── build.sh ├── xorg-twm ├── build.sh ├── twm-1.0.10_src_cursor.c.patch ├── twm-1.0.10_src_system.twmrc.patch ├── twm-1.0.11_src_deftwmrc.c.patch └── twm-1.0.11_src_menus.c.patch ├── xorg-xauth └── build.sh ├── xorg-xcalc └── build.sh ├── xorg-xclock └── build.sh ├── xorg-xdpyinfo └── build.sh ├── xorg-xev └── build.sh ├── xorg-xhost ├── build.sh └── xhost.c.patch ├── xorg-xkbcomp └── build.sh ├── xorg-xlsfonts └── build.sh ├── xorg-xmessage └── build.sh ├── xorg-xprop └── build.sh ├── xorg-xrandr └── build.sh ├── xorg-xrdb ├── build.sh └── xrdb.c.patch ├── xorg-xsetroot └── build.sh ├── xorg-xwininfo └── build.sh ├── xournal ├── build.sh ├── src-ttsubset-ttcr.c.patch ├── xo-shapes.c.patch └── xournal-0.4.8-c99-fix.patch ├── xournalpp └── build.sh ├── xpdf └── build.sh ├── xrdp ├── build.sh ├── dont-run-keygen.patch ├── fix-configs.patch ├── fix-rfbauth-with-no-passwd-file.patch ├── fix-tmpdir.patch ├── no-getlogin_r.patch └── termux-dont-have-shadow.patch ├── xsel └── build.sh ├── xvkbd └── build.sh ├── xwayland ├── build.sh ├── hw_xwayland_xwayland-shm.patch ├── stubmain.c.patch ├── use_ashmem.patch ├── wayland-scanner-for-build.patch ├── xorg-server-1.20.1_Xext_xf86bigfont.c.patch ├── xorg-server-1.20.1_os_access.c.patch ├── xorg-server-1.20.1_os_backtrace.c.patch ├── xorg-server-1.20.1_os_osinit.c.patch ├── xorg-server-1.20.1_os_utils.c.patch └── xorg-server-1.20.1_xkb_ddxLoad.c.patch └── zenity ├── build.sh └── meson.build.patch /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://termux.dev/donate 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/clean.sh -------------------------------------------------------------------------------- /ndk-patches/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/ndk-patches/langinfo.h -------------------------------------------------------------------------------- /ndk-patches/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/ndk-patches/libintl.h -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages.txt -------------------------------------------------------------------------------- /packages/1oom/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/1oom/build.sh -------------------------------------------------------------------------------- /packages/2048-c/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/2048-c/build.sh -------------------------------------------------------------------------------- /packages/2ping/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/2ping/build.sh -------------------------------------------------------------------------------- /packages/6tunnel/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/6tunnel/build.sh -------------------------------------------------------------------------------- /packages/7zip/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/7zip/build.sh -------------------------------------------------------------------------------- /packages/aalib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/aalib/build.sh -------------------------------------------------------------------------------- /packages/aapt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/aapt/build.sh -------------------------------------------------------------------------------- /packages/aapt/sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/aapt/sources.sh -------------------------------------------------------------------------------- /packages/abduco/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/abduco/build.sh -------------------------------------------------------------------------------- /packages/abook/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/abook/build.sh -------------------------------------------------------------------------------- /packages/acr/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/acr/build.sh -------------------------------------------------------------------------------- /packages/adms/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/adms/build.sh -------------------------------------------------------------------------------- /packages/aerc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/aerc/build.sh -------------------------------------------------------------------------------- /packages/agate/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/agate/build.sh -------------------------------------------------------------------------------- /packages/age/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/age/build.sh -------------------------------------------------------------------------------- /packages/agg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/agg/build.sh -------------------------------------------------------------------------------- /packages/aha/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/aha/build.sh -------------------------------------------------------------------------------- /packages/aichat/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/aichat/build.sh -------------------------------------------------------------------------------- /packages/alass/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/alass/build.sh -------------------------------------------------------------------------------- /packages/alembic/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/alembic/build.sh -------------------------------------------------------------------------------- /packages/alist/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/alist/build.sh -------------------------------------------------------------------------------- /packages/alpine/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/alpine/build.sh -------------------------------------------------------------------------------- /packages/alpine/pine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/alpine/pine.conf -------------------------------------------------------------------------------- /packages/amber/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/amber/build.sh -------------------------------------------------------------------------------- /packages/amfora/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/amfora/build.sh -------------------------------------------------------------------------------- /packages/anacron/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/anacron/build.sh -------------------------------------------------------------------------------- /packages/anewer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/anewer/build.sh -------------------------------------------------------------------------------- /packages/angband/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/angband/build.sh -------------------------------------------------------------------------------- /packages/ani-cli/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ani-cli/build.sh -------------------------------------------------------------------------------- /packages/ant/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ant/build.sh -------------------------------------------------------------------------------- /packages/apache2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/apache2/build.sh -------------------------------------------------------------------------------- /packages/apkeep/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/apkeep/build.sh -------------------------------------------------------------------------------- /packages/apr/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/apr/build.sh -------------------------------------------------------------------------------- /packages/apt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/apt/build.sh -------------------------------------------------------------------------------- /packages/aptly/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/aptly/build.sh -------------------------------------------------------------------------------- /packages/argon2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/argon2/build.sh -------------------------------------------------------------------------------- /packages/argp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/argp/build.sh -------------------------------------------------------------------------------- /packages/aria2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/aria2/build.sh -------------------------------------------------------------------------------- /packages/arj/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/arj/build.sh -------------------------------------------------------------------------------- /packages/arj/integr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/arj/integr.patch -------------------------------------------------------------------------------- /packages/arj/mode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/arj/mode.patch -------------------------------------------------------------------------------- /packages/aspell/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/aspell/build.sh -------------------------------------------------------------------------------- /packages/assimp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/assimp/build.sh -------------------------------------------------------------------------------- /packages/at/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/at/build.sh -------------------------------------------------------------------------------- /packages/atomvm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/atomvm/build.sh -------------------------------------------------------------------------------- /packages/atool/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/atool/build.sh -------------------------------------------------------------------------------- /packages/attr/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/attr/build.sh -------------------------------------------------------------------------------- /packages/atuin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/atuin/build.sh -------------------------------------------------------------------------------- /packages/aubio/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/aubio/build.sh -------------------------------------------------------------------------------- /packages/autossh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/autossh/build.sh -------------------------------------------------------------------------------- /packages/aview/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/aview/build.sh -------------------------------------------------------------------------------- /packages/avra/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/avra/build.sh -------------------------------------------------------------------------------- /packages/await/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/await/build.sh -------------------------------------------------------------------------------- /packages/axel/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/axel/build.sh -------------------------------------------------------------------------------- /packages/b3sum/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/b3sum/build.sh -------------------------------------------------------------------------------- /packages/babl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/babl/build.sh -------------------------------------------------------------------------------- /packages/barcode/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/barcode/build.sh -------------------------------------------------------------------------------- /packages/bash/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bash/build.sh -------------------------------------------------------------------------------- /packages/bash/etc-profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bash/etc-profile -------------------------------------------------------------------------------- /packages/bastet/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bastet/build.sh -------------------------------------------------------------------------------- /packages/bat/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bat/build.sh -------------------------------------------------------------------------------- /packages/bc-gh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bc-gh/build.sh -------------------------------------------------------------------------------- /packages/bc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bc/build.sh -------------------------------------------------------------------------------- /packages/bcal/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bcal/build.sh -------------------------------------------------------------------------------- /packages/bdsup2sub/src-Manifest.txt: -------------------------------------------------------------------------------- 1 | Main-Class: BDSup2Sub 2 | -------------------------------------------------------------------------------- /packages/bed/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bed/build.sh -------------------------------------------------------------------------------- /packages/below/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/below/build.sh -------------------------------------------------------------------------------- /packages/bftpd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bftpd/build.sh -------------------------------------------------------------------------------- /packages/bgrep/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bgrep/build.sh -------------------------------------------------------------------------------- /packages/biboumi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/biboumi/build.sh -------------------------------------------------------------------------------- /packages/bison/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bison/build.sh -------------------------------------------------------------------------------- /packages/bitcoin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bitcoin/build.sh -------------------------------------------------------------------------------- /packages/bitlbee/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bitlbee/build.sh -------------------------------------------------------------------------------- /packages/bk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bk/build.sh -------------------------------------------------------------------------------- /packages/blade/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/blade/build.sh -------------------------------------------------------------------------------- /packages/blink/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/blink/build.sh -------------------------------------------------------------------------------- /packages/blogc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/blogc/build.sh -------------------------------------------------------------------------------- /packages/bmon/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bmon/build.sh -------------------------------------------------------------------------------- /packages/boinc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/boinc/build.sh -------------------------------------------------------------------------------- /packages/boost/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/boost/build.sh -------------------------------------------------------------------------------- /packages/bore/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bore/build.sh -------------------------------------------------------------------------------- /packages/botan3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/botan3/build.sh -------------------------------------------------------------------------------- /packages/boxes/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/boxes/build.sh -------------------------------------------------------------------------------- /packages/brogue/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/brogue/build.sh -------------------------------------------------------------------------------- /packages/brook/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/brook/build.sh -------------------------------------------------------------------------------- /packages/broot/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/broot/build.sh -------------------------------------------------------------------------------- /packages/brotli/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/brotli/build.sh -------------------------------------------------------------------------------- /packages/btfs2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/btfs2/build.sh -------------------------------------------------------------------------------- /packages/buf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/buf/build.sh -------------------------------------------------------------------------------- /packages/busybox/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/busybox/build.sh -------------------------------------------------------------------------------- /packages/bvi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bvi/build.sh -------------------------------------------------------------------------------- /packages/bvi/comm.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/bvi/comm.c.patch -------------------------------------------------------------------------------- /packages/byacc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/byacc/build.sh -------------------------------------------------------------------------------- /packages/byobu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/byobu/build.sh -------------------------------------------------------------------------------- /packages/c-ares/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/c-ares/build.sh -------------------------------------------------------------------------------- /packages/cadaver/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cadaver/build.sh -------------------------------------------------------------------------------- /packages/caddy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/caddy/build.sh -------------------------------------------------------------------------------- /packages/calc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/calc/build.sh -------------------------------------------------------------------------------- /packages/cargo-c/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cargo-c/build.sh -------------------------------------------------------------------------------- /packages/catdoc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/catdoc/build.sh -------------------------------------------------------------------------------- /packages/catgirl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/catgirl/build.sh -------------------------------------------------------------------------------- /packages/catimg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/catimg/build.sh -------------------------------------------------------------------------------- /packages/cava/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cava/build.sh -------------------------------------------------------------------------------- /packages/cboard/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cboard/build.sh -------------------------------------------------------------------------------- /packages/cbonsai/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cbonsai/build.sh -------------------------------------------------------------------------------- /packages/cc65/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cc65/build.sh -------------------------------------------------------------------------------- /packages/ccache/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ccache/build.sh -------------------------------------------------------------------------------- /packages/cccc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cccc/build.sh -------------------------------------------------------------------------------- /packages/ccls/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ccls/build.sh -------------------------------------------------------------------------------- /packages/ccrypt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ccrypt/build.sh -------------------------------------------------------------------------------- /packages/cfm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cfm/build.sh -------------------------------------------------------------------------------- /packages/cgal/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cgal/build.sh -------------------------------------------------------------------------------- /packages/cgdb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cgdb/build.sh -------------------------------------------------------------------------------- /packages/cgif/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cgif/build.sh -------------------------------------------------------------------------------- /packages/chafa/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/chafa/build.sh -------------------------------------------------------------------------------- /packages/check/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/check/build.sh -------------------------------------------------------------------------------- /packages/chezmoi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/chezmoi/build.sh -------------------------------------------------------------------------------- /packages/chibicc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/chibicc/build.sh -------------------------------------------------------------------------------- /packages/chicken/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/chicken/build.sh -------------------------------------------------------------------------------- /packages/choose/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/choose/build.sh -------------------------------------------------------------------------------- /packages/chrony/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/chrony/build.sh -------------------------------------------------------------------------------- /packages/cicada/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cicada/build.sh -------------------------------------------------------------------------------- /packages/ciso/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ciso/build.sh -------------------------------------------------------------------------------- /packages/ckermit/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ckermit/build.sh -------------------------------------------------------------------------------- /packages/clamav/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/clamav/build.sh -------------------------------------------------------------------------------- /packages/clamav/syncfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/clamav/syncfs.c -------------------------------------------------------------------------------- /packages/clblast/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/clblast/build.sh -------------------------------------------------------------------------------- /packages/cliaoke/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cliaoke/build.sh -------------------------------------------------------------------------------- /packages/clidle/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/clidle/build.sh -------------------------------------------------------------------------------- /packages/clifm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/clifm/build.sh -------------------------------------------------------------------------------- /packages/clinfo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/clinfo/build.sh -------------------------------------------------------------------------------- /packages/clipp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/clipp/build.sh -------------------------------------------------------------------------------- /packages/cloneit/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cloneit/build.sh -------------------------------------------------------------------------------- /packages/clpeak/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/clpeak/build.sh -------------------------------------------------------------------------------- /packages/clvk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/clvk/build.sh -------------------------------------------------------------------------------- /packages/cmake/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cmake/build.sh -------------------------------------------------------------------------------- /packages/cmark/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cmark/build.sh -------------------------------------------------------------------------------- /packages/cmatrix/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cmatrix/build.sh -------------------------------------------------------------------------------- /packages/cmocka/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cmocka/build.sh -------------------------------------------------------------------------------- /packages/cmus/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cmus/build.sh -------------------------------------------------------------------------------- /packages/cmusfm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cmusfm/build.sh -------------------------------------------------------------------------------- /packages/cointop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cointop/build.sh -------------------------------------------------------------------------------- /packages/colm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/colm/build.sh -------------------------------------------------------------------------------- /packages/cookcli/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cookcli/build.sh -------------------------------------------------------------------------------- /packages/corgi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/corgi/build.sh -------------------------------------------------------------------------------- /packages/cowsay/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cowsay/build.sh -------------------------------------------------------------------------------- /packages/cpio/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cpio/build.sh -------------------------------------------------------------------------------- /packages/cppi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cppi/build.sh -------------------------------------------------------------------------------- /packages/crawl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/crawl/build.sh -------------------------------------------------------------------------------- /packages/croc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/croc/build.sh -------------------------------------------------------------------------------- /packages/cronie/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cronie/build.sh -------------------------------------------------------------------------------- /packages/crunch/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/crunch/build.sh -------------------------------------------------------------------------------- /packages/crystal/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/crystal/build.sh -------------------------------------------------------------------------------- /packages/cscope/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cscope/build.sh -------------------------------------------------------------------------------- /packages/csh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/csh/LICENSE -------------------------------------------------------------------------------- /packages/csh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/csh/build.sh -------------------------------------------------------------------------------- /packages/csh/csh.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/csh/csh.c.patch -------------------------------------------------------------------------------- /packages/csh/dol.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/csh/dol.c.patch -------------------------------------------------------------------------------- /packages/csh/file.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/csh/file.c.patch -------------------------------------------------------------------------------- /packages/csh/func.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/csh/func.c.patch -------------------------------------------------------------------------------- /packages/csh/proc.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/csh/proc.c.patch -------------------------------------------------------------------------------- /packages/csh/str.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/csh/str.c.patch -------------------------------------------------------------------------------- /packages/csol/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/csol/build.sh -------------------------------------------------------------------------------- /packages/csview/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/csview/build.sh -------------------------------------------------------------------------------- /packages/ctags/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ctags/build.sh -------------------------------------------------------------------------------- /packages/cups/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cups/build.sh -------------------------------------------------------------------------------- /packages/curlie/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/curlie/build.sh -------------------------------------------------------------------------------- /packages/cvs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/cvs/build.sh -------------------------------------------------------------------------------- /packages/d8/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/d8/build.sh -------------------------------------------------------------------------------- /packages/dar/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dar/build.sh -------------------------------------------------------------------------------- /packages/dart/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dart/build.sh -------------------------------------------------------------------------------- /packages/dasel/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dasel/build.sh -------------------------------------------------------------------------------- /packages/dash/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dash/build.sh -------------------------------------------------------------------------------- /packages/dash/wait3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dash/wait3.patch -------------------------------------------------------------------------------- /packages/dasm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dasm/build.sh -------------------------------------------------------------------------------- /packages/dbus/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dbus/build.sh -------------------------------------------------------------------------------- /packages/dcmtk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dcmtk/build.sh -------------------------------------------------------------------------------- /packages/dcraw/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dcraw/build.sh -------------------------------------------------------------------------------- /packages/delve/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/delve/build.sh -------------------------------------------------------------------------------- /packages/desed/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/desed/build.sh -------------------------------------------------------------------------------- /packages/deutex/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/deutex/build.sh -------------------------------------------------------------------------------- /packages/dex2jar/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dex2jar/build.sh -------------------------------------------------------------------------------- /packages/dialog/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dialog/build.sh -------------------------------------------------------------------------------- /packages/dictd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dictd/build.sh -------------------------------------------------------------------------------- /packages/dictd/dict.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dictd/dict.conf -------------------------------------------------------------------------------- /packages/dirb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dirb/build.sh -------------------------------------------------------------------------------- /packages/direnv/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/direnv/build.sh -------------------------------------------------------------------------------- /packages/diskus/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/diskus/build.sh -------------------------------------------------------------------------------- /packages/distant/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/distant/build.sh -------------------------------------------------------------------------------- /packages/distcc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/distcc/build.sh -------------------------------------------------------------------------------- /packages/dnote/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dnote/build.sh -------------------------------------------------------------------------------- /packages/dns2tcp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dns2tcp/build.sh -------------------------------------------------------------------------------- /packages/dnsmap/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dnsmap/build.sh -------------------------------------------------------------------------------- /packages/dnstop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dnstop/build.sh -------------------------------------------------------------------------------- /packages/docopt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/docopt/build.sh -------------------------------------------------------------------------------- /packages/doctest/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/doctest/build.sh -------------------------------------------------------------------------------- /packages/dog/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dog/build.sh -------------------------------------------------------------------------------- /packages/dotconf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dotconf/build.sh -------------------------------------------------------------------------------- /packages/doxygen/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/doxygen/build.sh -------------------------------------------------------------------------------- /packages/dpkg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dpkg/build.sh -------------------------------------------------------------------------------- /packages/dtach/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dtach/build.sh -------------------------------------------------------------------------------- /packages/dtc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dtc/build.sh -------------------------------------------------------------------------------- /packages/dte/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dte/build.sh -------------------------------------------------------------------------------- /packages/dua/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dua/build.sh -------------------------------------------------------------------------------- /packages/duc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/duc/build.sh -------------------------------------------------------------------------------- /packages/duf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/duf/build.sh -------------------------------------------------------------------------------- /packages/dufs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dufs/build.sh -------------------------------------------------------------------------------- /packages/dust/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dust/build.sh -------------------------------------------------------------------------------- /packages/dvtm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dvtm/build.sh -------------------------------------------------------------------------------- /packages/dvtm/vt.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dvtm/vt.c.patch -------------------------------------------------------------------------------- /packages/dwarves/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dwarves/build.sh -------------------------------------------------------------------------------- /packages/dx/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/dx/build.sh -------------------------------------------------------------------------------- /packages/e2tools/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/e2tools/build.sh -------------------------------------------------------------------------------- /packages/ecj/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ecj/build.sh -------------------------------------------------------------------------------- /packages/ecj/ecj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ecj/ecj -------------------------------------------------------------------------------- /packages/ecj/ecj-24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ecj/ecj-24 -------------------------------------------------------------------------------- /packages/ecl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ecl/build.sh -------------------------------------------------------------------------------- /packages/ed/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ed/build.sh -------------------------------------------------------------------------------- /packages/eigen/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/eigen/build.sh -------------------------------------------------------------------------------- /packages/eja/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/eja/build.sh -------------------------------------------------------------------------------- /packages/eja/eja.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/eja/eja.c.patch -------------------------------------------------------------------------------- /packages/elinks/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/elinks/build.sh -------------------------------------------------------------------------------- /packages/elixir/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/elixir/build.sh -------------------------------------------------------------------------------- /packages/eltclsh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/eltclsh/build.sh -------------------------------------------------------------------------------- /packages/elvish/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/elvish/build.sh -------------------------------------------------------------------------------- /packages/emacs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/emacs/build.sh -------------------------------------------------------------------------------- /packages/enblend/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/enblend/build.sh -------------------------------------------------------------------------------- /packages/enchant/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/enchant/build.sh -------------------------------------------------------------------------------- /packages/entr/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/entr/build.sh -------------------------------------------------------------------------------- /packages/erlang/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/erlang/build.sh -------------------------------------------------------------------------------- /packages/esbuild/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/esbuild/build.sh -------------------------------------------------------------------------------- /packages/espeak/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/espeak/build.sh -------------------------------------------------------------------------------- /packages/et/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/et/build.sh -------------------------------------------------------------------------------- /packages/etsh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/etsh/build.sh -------------------------------------------------------------------------------- /packages/exhale/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/exhale/build.sh -------------------------------------------------------------------------------- /packages/exiv2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/exiv2/build.sh -------------------------------------------------------------------------------- /packages/expect/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/expect/build.sh -------------------------------------------------------------------------------- /packages/eza/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/eza/build.sh -------------------------------------------------------------------------------- /packages/fact++/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fact++/build.sh -------------------------------------------------------------------------------- /packages/fasd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fasd/build.sh -------------------------------------------------------------------------------- /packages/fastmod/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fastmod/build.sh -------------------------------------------------------------------------------- /packages/fatsort/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fatsort/build.sh -------------------------------------------------------------------------------- /packages/fclones/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fclones/build.sh -------------------------------------------------------------------------------- /packages/fcp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fcp/build.sh -------------------------------------------------------------------------------- /packages/fd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fd/build.sh -------------------------------------------------------------------------------- /packages/fdkaac/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fdkaac/build.sh -------------------------------------------------------------------------------- /packages/fdm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fdm/LICENSE -------------------------------------------------------------------------------- /packages/fdm/LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fdm/LICENSE.BSD -------------------------------------------------------------------------------- /packages/fdm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fdm/build.sh -------------------------------------------------------------------------------- /packages/fdupes/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fdupes/build.sh -------------------------------------------------------------------------------- /packages/fennel/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fennel/build.sh -------------------------------------------------------------------------------- /packages/fex/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fex/build.sh -------------------------------------------------------------------------------- /packages/fff/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fff/build.sh -------------------------------------------------------------------------------- /packages/ffmpeg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ffmpeg/build.sh -------------------------------------------------------------------------------- /packages/ffsend/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ffsend/build.sh -------------------------------------------------------------------------------- /packages/fftw/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fftw/build.sh -------------------------------------------------------------------------------- /packages/figlet/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/figlet/build.sh -------------------------------------------------------------------------------- /packages/file/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/file/build.sh -------------------------------------------------------------------------------- /packages/finch/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/finch/build.sh -------------------------------------------------------------------------------- /packages/fish/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fish/build.sh -------------------------------------------------------------------------------- /packages/flang/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/flang/build.sh -------------------------------------------------------------------------------- /packages/flex/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/flex/build.sh -------------------------------------------------------------------------------- /packages/flyctl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/flyctl/build.sh -------------------------------------------------------------------------------- /packages/fm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fm/build.sh -------------------------------------------------------------------------------- /packages/fmt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fmt/build.sh -------------------------------------------------------------------------------- /packages/fortune/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fortune/build.sh -------------------------------------------------------------------------------- /packages/fossil/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fossil/build.sh -------------------------------------------------------------------------------- /packages/fribidi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fribidi/build.sh -------------------------------------------------------------------------------- /packages/frotz/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/frotz/build.sh -------------------------------------------------------------------------------- /packages/frotz/zgames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/frotz/zgames -------------------------------------------------------------------------------- /packages/frp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/frp/build.sh -------------------------------------------------------------------------------- /packages/fselect/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fselect/build.sh -------------------------------------------------------------------------------- /packages/fsmon/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fsmon/build.sh -------------------------------------------------------------------------------- /packages/fte/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fte/build.sh -------------------------------------------------------------------------------- /packages/fwknop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fwknop/build.sh -------------------------------------------------------------------------------- /packages/fx/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fx/build.sh -------------------------------------------------------------------------------- /packages/fzf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fzf/build.sh -------------------------------------------------------------------------------- /packages/fzy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/fzy/build.sh -------------------------------------------------------------------------------- /packages/gap/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gap/build.sh -------------------------------------------------------------------------------- /packages/gatling/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gatling/build.sh -------------------------------------------------------------------------------- /packages/gauche/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gauche/build.sh -------------------------------------------------------------------------------- /packages/gawk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gawk/build.sh -------------------------------------------------------------------------------- /packages/gawk/io.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gawk/io.c.patch -------------------------------------------------------------------------------- /packages/gbt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gbt/build.sh -------------------------------------------------------------------------------- /packages/gcal/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gcal/build.sh -------------------------------------------------------------------------------- /packages/gdal/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gdal/build.sh -------------------------------------------------------------------------------- /packages/gdb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gdb/build.sh -------------------------------------------------------------------------------- /packages/gdb/python.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gdb/python.patch -------------------------------------------------------------------------------- /packages/gdbm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gdbm/build.sh -------------------------------------------------------------------------------- /packages/gdk-pixbuf/hooks/postinst.in: -------------------------------------------------------------------------------- 1 | #!@TERMUX_PREFIX@/bin/sh 2 | gdk-pixbuf-query-loaders --update-cache 3 | exit 0 4 | -------------------------------------------------------------------------------- /packages/gdk-pixbuf/hooks/triggers.in: -------------------------------------------------------------------------------- 1 | interest-noawait @TERMUX_PREFIX@/lib/gdk-pixbuf-2.0/2.10.0/loaders 2 | -------------------------------------------------------------------------------- /packages/gdu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gdu/build.sh -------------------------------------------------------------------------------- /packages/gecode/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gecode/build.sh -------------------------------------------------------------------------------- /packages/gegl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gegl/build.sh -------------------------------------------------------------------------------- /packages/getconf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/getconf/build.sh -------------------------------------------------------------------------------- /packages/geth/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/geth/build.sh -------------------------------------------------------------------------------- /packages/gettext/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gettext/build.sh -------------------------------------------------------------------------------- /packages/gexiv2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gexiv2/build.sh -------------------------------------------------------------------------------- /packages/gflags/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gflags/build.sh -------------------------------------------------------------------------------- /packages/gforth/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gforth/build.sh -------------------------------------------------------------------------------- /packages/gh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gh/build.sh -------------------------------------------------------------------------------- /packages/giflib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/giflib/build.sh -------------------------------------------------------------------------------- /packages/gifski/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gifski/build.sh -------------------------------------------------------------------------------- /packages/git-lfs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/git-lfs/build.sh -------------------------------------------------------------------------------- /packages/git/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/git/build.sh -------------------------------------------------------------------------------- /packages/git/git.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/git/git.patch -------------------------------------------------------------------------------- /packages/git/help.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/git/help.c.patch -------------------------------------------------------------------------------- /packages/gitea/app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gitea/app.ini -------------------------------------------------------------------------------- /packages/gitea/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gitea/build.sh -------------------------------------------------------------------------------- /packages/gitui/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gitui/build.sh -------------------------------------------------------------------------------- /packages/gkermit/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gkermit/build.sh -------------------------------------------------------------------------------- /packages/glib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/glib/build.sh -------------------------------------------------------------------------------- /packages/glib/hooks/triggers.in: -------------------------------------------------------------------------------- 1 | interest-noawait @TERMUX_PREFIX@/share/glib-2.0/schemas 2 | -------------------------------------------------------------------------------- /packages/glm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/glm/build.sh -------------------------------------------------------------------------------- /packages/global/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/global/build.sh -------------------------------------------------------------------------------- /packages/glow/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/glow/build.sh -------------------------------------------------------------------------------- /packages/glpk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/glpk/build.sh -------------------------------------------------------------------------------- /packages/glslang/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/glslang/build.sh -------------------------------------------------------------------------------- /packages/glulxe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/glulxe/build.sh -------------------------------------------------------------------------------- /packages/gmic/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gmic/build.sh -------------------------------------------------------------------------------- /packages/gn/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gn/build.sh -------------------------------------------------------------------------------- /packages/gnucap/CXX.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gnucap/CXX.patch -------------------------------------------------------------------------------- /packages/gnucap/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gnucap/build.sh -------------------------------------------------------------------------------- /packages/gnugo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gnugo/build.sh -------------------------------------------------------------------------------- /packages/gnuit/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gnuit/build.sh -------------------------------------------------------------------------------- /packages/gnunet/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gnunet/build.sh -------------------------------------------------------------------------------- /packages/gnupg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gnupg/build.sh -------------------------------------------------------------------------------- /packages/gnuplot/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gnuplot/build.sh -------------------------------------------------------------------------------- /packages/gnurl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gnurl/build.sh -------------------------------------------------------------------------------- /packages/gnuski/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gnuski/build.sh -------------------------------------------------------------------------------- /packages/gobang/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gobang/build.sh -------------------------------------------------------------------------------- /packages/gogs/app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gogs/app.ini -------------------------------------------------------------------------------- /packages/gogs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gogs/build.sh -------------------------------------------------------------------------------- /packages/gojq/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gojq/build.sh -------------------------------------------------------------------------------- /packages/golang/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/golang/build.sh -------------------------------------------------------------------------------- /packages/gomp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gomp/build.sh -------------------------------------------------------------------------------- /packages/gomuks/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gomuks/build.sh -------------------------------------------------------------------------------- /packages/goose/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/goose/build.sh -------------------------------------------------------------------------------- /packages/gopass/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gopass/build.sh -------------------------------------------------------------------------------- /packages/gopher/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gopher/build.sh -------------------------------------------------------------------------------- /packages/gotop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gotop/build.sh -------------------------------------------------------------------------------- /packages/gotty/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gotty/build.sh -------------------------------------------------------------------------------- /packages/gpac/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gpac/build.sh -------------------------------------------------------------------------------- /packages/gperf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gperf/build.sh -------------------------------------------------------------------------------- /packages/gpgme/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gpgme/build.sh -------------------------------------------------------------------------------- /packages/gping/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gping/build.sh -------------------------------------------------------------------------------- /packages/gradle/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gradle/build.sh -------------------------------------------------------------------------------- /packages/grafana/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/grafana/build.sh -------------------------------------------------------------------------------- /packages/greed/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/greed/build.sh -------------------------------------------------------------------------------- /packages/grep/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/grep/build.sh -------------------------------------------------------------------------------- /packages/grex/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/grex/build.sh -------------------------------------------------------------------------------- /packages/groff/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/groff/build.sh -------------------------------------------------------------------------------- /packages/gron/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gron/build.sh -------------------------------------------------------------------------------- /packages/groovy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/groovy/build.sh -------------------------------------------------------------------------------- /packages/grv/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/grv/build.sh -------------------------------------------------------------------------------- /packages/gsl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gsl/build.sh -------------------------------------------------------------------------------- /packages/gtypist/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gtypist/build.sh -------------------------------------------------------------------------------- /packages/guile/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/guile/build.sh -------------------------------------------------------------------------------- /packages/guile/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/guile/malloc.h -------------------------------------------------------------------------------- /packages/guile18/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/guile18/build.sh -------------------------------------------------------------------------------- /packages/gum/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gum/build.sh -------------------------------------------------------------------------------- /packages/gzip/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/gzip/build.sh -------------------------------------------------------------------------------- /packages/haproxy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/haproxy/build.sh -------------------------------------------------------------------------------- /packages/has/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/has/build.sh -------------------------------------------------------------------------------- /packages/hcl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hcl/build.sh -------------------------------------------------------------------------------- /packages/hcloud/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hcloud/build.sh -------------------------------------------------------------------------------- /packages/helix/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/helix/build.sh -------------------------------------------------------------------------------- /packages/hello/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hello/build.sh -------------------------------------------------------------------------------- /packages/helm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/helm/build.sh -------------------------------------------------------------------------------- /packages/hexedit/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hexedit/build.sh -------------------------------------------------------------------------------- /packages/hexer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hexer/build.sh -------------------------------------------------------------------------------- /packages/hexyl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hexyl/build.sh -------------------------------------------------------------------------------- /packages/heyu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/heyu/build.sh -------------------------------------------------------------------------------- /packages/hilbish/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hilbish/build.sh -------------------------------------------------------------------------------- /packages/hoedown/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hoedown/build.sh -------------------------------------------------------------------------------- /packages/hors/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hors/build.sh -------------------------------------------------------------------------------- /packages/hr/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hr/build.sh -------------------------------------------------------------------------------- /packages/hstr/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hstr/build.sh -------------------------------------------------------------------------------- /packages/htop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/htop/build.sh -------------------------------------------------------------------------------- /packages/htop/procstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/htop/procstat -------------------------------------------------------------------------------- /packages/htslib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/htslib/build.sh -------------------------------------------------------------------------------- /packages/httping/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/httping/build.sh -------------------------------------------------------------------------------- /packages/httrack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/httrack/build.sh -------------------------------------------------------------------------------- /packages/hub/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hub/build.sh -------------------------------------------------------------------------------- /packages/hugo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hugo/build.sh -------------------------------------------------------------------------------- /packages/hummin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hummin/build.sh -------------------------------------------------------------------------------- /packages/hut/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hut/build.sh -------------------------------------------------------------------------------- /packages/hz/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/hz/build.sh -------------------------------------------------------------------------------- /packages/i2pd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/i2pd/build.sh -------------------------------------------------------------------------------- /packages/icecast/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/icecast/build.sh -------------------------------------------------------------------------------- /packages/ices/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ices/build.sh -------------------------------------------------------------------------------- /packages/id3lib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/id3lib/build.sh -------------------------------------------------------------------------------- /packages/id3ted/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/id3ted/build.sh -------------------------------------------------------------------------------- /packages/id3v2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/id3v2/build.sh -------------------------------------------------------------------------------- /packages/imath/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/imath/build.sh -------------------------------------------------------------------------------- /packages/imgflo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/imgflo/build.sh -------------------------------------------------------------------------------- /packages/imlib2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/imlib2/build.sh -------------------------------------------------------------------------------- /packages/indent/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/indent/build.sh -------------------------------------------------------------------------------- /packages/inxi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/inxi/build.sh -------------------------------------------------------------------------------- /packages/ipcalc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ipcalc/build.sh -------------------------------------------------------------------------------- /packages/iperf3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/iperf3/build.sh -------------------------------------------------------------------------------- /packages/ipfs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ipfs/build.sh -------------------------------------------------------------------------------- /packages/ired/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ired/build.sh -------------------------------------------------------------------------------- /packages/irssi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/irssi/build.sh -------------------------------------------------------------------------------- /packages/isync/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/isync/build.sh -------------------------------------------------------------------------------- /packages/iwyu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/iwyu/build.sh -------------------------------------------------------------------------------- /packages/jcal/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jcal/build.sh -------------------------------------------------------------------------------- /packages/jftui/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jftui/build.sh -------------------------------------------------------------------------------- /packages/jhead/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jhead/build.sh -------------------------------------------------------------------------------- /packages/jigdo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jigdo/build.sh -------------------------------------------------------------------------------- /packages/jira-go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jira-go/build.sh -------------------------------------------------------------------------------- /packages/jo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jo/build.sh -------------------------------------------------------------------------------- /packages/joe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/joe/build.sh -------------------------------------------------------------------------------- /packages/jove/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jove/build.sh -------------------------------------------------------------------------------- /packages/jp2a/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jp2a/build.sh -------------------------------------------------------------------------------- /packages/jq/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jq/build.sh -------------------------------------------------------------------------------- /packages/jql/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jql/build.sh -------------------------------------------------------------------------------- /packages/json-c/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/json-c/build.sh -------------------------------------------------------------------------------- /packages/jsoncpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jsoncpp/build.sh -------------------------------------------------------------------------------- /packages/jump/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jump/build.sh -------------------------------------------------------------------------------- /packages/jupp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jupp/build.sh -------------------------------------------------------------------------------- /packages/jython/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/jython/build.sh -------------------------------------------------------------------------------- /packages/k9s/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/k9s/build.sh -------------------------------------------------------------------------------- /packages/kak-lsp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/kak-lsp/build.sh -------------------------------------------------------------------------------- /packages/kakoune/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/kakoune/build.sh -------------------------------------------------------------------------------- /packages/kcptun/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/kcptun/build.sh -------------------------------------------------------------------------------- /packages/keybase/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/keybase/build.sh -------------------------------------------------------------------------------- /packages/kibi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/kibi/build.sh -------------------------------------------------------------------------------- /packages/knockd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/knockd/build.sh -------------------------------------------------------------------------------- /packages/kona/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/kona/build.sh -------------------------------------------------------------------------------- /packages/kotlin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/kotlin/build.sh -------------------------------------------------------------------------------- /packages/krb5/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/krb5/build.sh -------------------------------------------------------------------------------- /packages/kubectl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/kubectl/build.sh -------------------------------------------------------------------------------- /packages/lazygit/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lazygit/build.sh -------------------------------------------------------------------------------- /packages/lcal/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lcal/build.sh -------------------------------------------------------------------------------- /packages/ldc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ldc/build.sh -------------------------------------------------------------------------------- /packages/ldd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ldd/build.sh -------------------------------------------------------------------------------- /packages/ldd/ldd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ldd/ldd.in -------------------------------------------------------------------------------- /packages/ldns/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ldns/build.sh -------------------------------------------------------------------------------- /packages/ledger/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ledger/build.sh -------------------------------------------------------------------------------- /packages/less/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/less/build.sh -------------------------------------------------------------------------------- /packages/leveldb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/leveldb/build.sh -------------------------------------------------------------------------------- /packages/lexbor/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lexbor/build.sh -------------------------------------------------------------------------------- /packages/lexter/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lexter/build.sh -------------------------------------------------------------------------------- /packages/lf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lf/build.sh -------------------------------------------------------------------------------- /packages/lftp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lftp/build.sh -------------------------------------------------------------------------------- /packages/lhasa/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lhasa/build.sh -------------------------------------------------------------------------------- /packages/liba52/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/liba52/build.sh -------------------------------------------------------------------------------- /packages/libacl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libacl/build.sh -------------------------------------------------------------------------------- /packages/libaml/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libaml/build.sh -------------------------------------------------------------------------------- /packages/libandroid-complex-math/upstream-netbsd/lib/libm/src/namespace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/libao/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libao/build.sh -------------------------------------------------------------------------------- /packages/libaom/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libaom/build.sh -------------------------------------------------------------------------------- /packages/libasio/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libasio/build.sh -------------------------------------------------------------------------------- /packages/libass/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libass/build.sh -------------------------------------------------------------------------------- /packages/libbs2b/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libbs2b/build.sh -------------------------------------------------------------------------------- /packages/libbsd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libbsd/build.sh -------------------------------------------------------------------------------- /packages/libburn/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libburn/build.sh -------------------------------------------------------------------------------- /packages/libbz2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libbz2/build.sh -------------------------------------------------------------------------------- /packages/libc++/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libc++/build.sh -------------------------------------------------------------------------------- /packages/libcaca/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libcaca/build.sh -------------------------------------------------------------------------------- /packages/libcap/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libcap/build.sh -------------------------------------------------------------------------------- /packages/libccd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libccd/build.sh -------------------------------------------------------------------------------- /packages/libcddb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libcddb/build.sh -------------------------------------------------------------------------------- /packages/libcdk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libcdk/build.sh -------------------------------------------------------------------------------- /packages/libcec/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libcec/build.sh -------------------------------------------------------------------------------- /packages/libcln/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libcln/build.sh -------------------------------------------------------------------------------- /packages/libcoap/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libcoap/build.sh -------------------------------------------------------------------------------- /packages/libcrypt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libcrypt/LICENSE -------------------------------------------------------------------------------- /packages/libcrypt/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libcrypt/crypt.h -------------------------------------------------------------------------------- /packages/libcue/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libcue/build.sh -------------------------------------------------------------------------------- /packages/libcurl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libcurl/build.sh -------------------------------------------------------------------------------- /packages/libczmq/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libczmq/build.sh -------------------------------------------------------------------------------- /packages/libdart/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libdart/build.sh -------------------------------------------------------------------------------- /packages/libdb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libdb/build.sh -------------------------------------------------------------------------------- /packages/libdmtx/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libdmtx/build.sh -------------------------------------------------------------------------------- /packages/libdrm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libdrm/LICENSE -------------------------------------------------------------------------------- /packages/libdrm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libdrm/build.sh -------------------------------------------------------------------------------- /packages/libebml/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libebml/build.sh -------------------------------------------------------------------------------- /packages/libedit/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libedit/build.sh -------------------------------------------------------------------------------- /packages/libelf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libelf/build.sh -------------------------------------------------------------------------------- /packages/libelf/obstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libelf/obstack.h -------------------------------------------------------------------------------- /packages/libelf/qsort_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libelf/qsort_r.h -------------------------------------------------------------------------------- /packages/libenet/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libenet/build.sh -------------------------------------------------------------------------------- /packages/libev/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libev/build.sh -------------------------------------------------------------------------------- /packages/libexif/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libexif/build.sh -------------------------------------------------------------------------------- /packages/libfann/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libfann/build.sh -------------------------------------------------------------------------------- /packages/libfcl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libfcl/build.sh -------------------------------------------------------------------------------- /packages/libffi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libffi/build.sh -------------------------------------------------------------------------------- /packages/libflac/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libflac/build.sh -------------------------------------------------------------------------------- /packages/libgc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libgc/build.sh -------------------------------------------------------------------------------- /packages/libgd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libgd/build.sh -------------------------------------------------------------------------------- /packages/libgee/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libgee/build.sh -------------------------------------------------------------------------------- /packages/libgeos/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libgeos/build.sh -------------------------------------------------------------------------------- /packages/libgf2x/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libgf2x/build.sh -------------------------------------------------------------------------------- /packages/libgit2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libgit2/build.sh -------------------------------------------------------------------------------- /packages/libglvnd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libglvnd/LICENSE -------------------------------------------------------------------------------- /packages/libgmp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libgmp/build.sh -------------------------------------------------------------------------------- /packages/libgnt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libgnt/build.sh -------------------------------------------------------------------------------- /packages/libgrpc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libgrpc/build.sh -------------------------------------------------------------------------------- /packages/libgsf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libgsf/build.sh -------------------------------------------------------------------------------- /packages/libgxps/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libgxps/build.sh -------------------------------------------------------------------------------- /packages/libhdf5/arm/H5lib_settings.c: -------------------------------------------------------------------------------- 1 | ../aarch64/H5lib_settings.c -------------------------------------------------------------------------------- /packages/libhdf5/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libhdf5/build.sh -------------------------------------------------------------------------------- /packages/libhdf5/i686/H5lib_settings.c: -------------------------------------------------------------------------------- 1 | ../aarch64/H5lib_settings.c -------------------------------------------------------------------------------- /packages/libhdf5/x86_64/H5Tinit.c: -------------------------------------------------------------------------------- 1 | ../aarch64/H5Tinit.c -------------------------------------------------------------------------------- /packages/libhdf5/x86_64/H5lib_settings.c: -------------------------------------------------------------------------------- 1 | ../aarch64/H5lib_settings.c -------------------------------------------------------------------------------- /packages/libheif/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libheif/build.sh -------------------------------------------------------------------------------- /packages/libical/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libical/build.sh -------------------------------------------------------------------------------- /packages/libice/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libice/build.sh -------------------------------------------------------------------------------- /packages/libicu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libicu/build.sh -------------------------------------------------------------------------------- /packages/libidn/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libidn/build.sh -------------------------------------------------------------------------------- /packages/libidn2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libidn2/build.sh -------------------------------------------------------------------------------- /packages/libinih/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libinih/build.sh -------------------------------------------------------------------------------- /packages/libisl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libisl/build.sh -------------------------------------------------------------------------------- /packages/libjxl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libjxl/build.sh -------------------------------------------------------------------------------- /packages/libknot/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libknot/build.sh -------------------------------------------------------------------------------- /packages/libksba/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libksba/build.sh -------------------------------------------------------------------------------- /packages/libllvm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libllvm/build.sh -------------------------------------------------------------------------------- /packages/liblmdb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/liblmdb/build.sh -------------------------------------------------------------------------------- /packages/liblo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/liblo/build.sh -------------------------------------------------------------------------------- /packages/liblqr/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/liblqr/build.sh -------------------------------------------------------------------------------- /packages/liblrdf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/liblrdf/build.sh -------------------------------------------------------------------------------- /packages/liblz4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/liblz4/build.sh -------------------------------------------------------------------------------- /packages/liblzma/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/liblzma/build.sh -------------------------------------------------------------------------------- /packages/liblzo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/liblzo/build.sh -------------------------------------------------------------------------------- /packages/libmd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libmd/build.sh -------------------------------------------------------------------------------- /packages/libnl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libnl/build.sh -------------------------------------------------------------------------------- /packages/libsm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libsm/build.sh -------------------------------------------------------------------------------- /packages/libtd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libtd/build.sh -------------------------------------------------------------------------------- /packages/libuv/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libuv/build.sh -------------------------------------------------------------------------------- /packages/libwv/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libwv/build.sh -------------------------------------------------------------------------------- /packages/libxi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libxi/build.sh -------------------------------------------------------------------------------- /packages/libxt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libxt/build.sh -------------------------------------------------------------------------------- /packages/libxv/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/libxv/build.sh -------------------------------------------------------------------------------- /packages/lilv/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lilv/build.sh -------------------------------------------------------------------------------- /packages/links/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/links/build.sh -------------------------------------------------------------------------------- /packages/lipl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lipl/build.sh -------------------------------------------------------------------------------- /packages/lnav/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lnav/build.sh -------------------------------------------------------------------------------- /packages/lnd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lnd/build.sh -------------------------------------------------------------------------------- /packages/loksh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/loksh/build.sh -------------------------------------------------------------------------------- /packages/lr/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lr/build.sh -------------------------------------------------------------------------------- /packages/lrzip/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lrzip/build.sh -------------------------------------------------------------------------------- /packages/lrzsz/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lrzsz/build.sh -------------------------------------------------------------------------------- /packages/lsd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lsd/build.sh -------------------------------------------------------------------------------- /packages/lsix/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lsix/build.sh -------------------------------------------------------------------------------- /packages/lsof/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lsof/build.sh -------------------------------------------------------------------------------- /packages/luv/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/luv/build.sh -------------------------------------------------------------------------------- /packages/lux/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lux/build.sh -------------------------------------------------------------------------------- /packages/lv2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lv2/build.sh -------------------------------------------------------------------------------- /packages/lynx/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lynx/build.sh -------------------------------------------------------------------------------- /packages/lzip/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lzip/build.sh -------------------------------------------------------------------------------- /packages/lzlib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lzlib/build.sh -------------------------------------------------------------------------------- /packages/lzop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/lzop/build.sh -------------------------------------------------------------------------------- /packages/m4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/m4/build.sh -------------------------------------------------------------------------------- /packages/m4/spawn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/m4/spawn.patch -------------------------------------------------------------------------------- /packages/make/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/make/build.sh -------------------------------------------------------------------------------- /packages/man/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/man/build.sh -------------------------------------------------------------------------------- /packages/maven/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/maven/build.sh -------------------------------------------------------------------------------- /packages/mc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mc/build.sh -------------------------------------------------------------------------------- /packages/mcfly/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mcfly/build.sh -------------------------------------------------------------------------------- /packages/mdp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mdp/build.sh -------------------------------------------------------------------------------- /packages/mesa/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mesa/build.sh -------------------------------------------------------------------------------- /packages/mfcuk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mfcuk/build.sh -------------------------------------------------------------------------------- /packages/mg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mg/build.sh -------------------------------------------------------------------------------- /packages/micro/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/micro/build.sh -------------------------------------------------------------------------------- /packages/minio/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/minio/build.sh -------------------------------------------------------------------------------- /packages/mksh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mksh/build.sh -------------------------------------------------------------------------------- /packages/mold/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mold/build.sh -------------------------------------------------------------------------------- /packages/mono/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mono/build.sh -------------------------------------------------------------------------------- /packages/moria/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/moria/build.sh -------------------------------------------------------------------------------- /packages/mosh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mosh/build.sh -------------------------------------------------------------------------------- /packages/mosh/mosh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mosh/mosh.cc -------------------------------------------------------------------------------- /packages/most/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/most/build.sh -------------------------------------------------------------------------------- /packages/mpc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mpc/build.sh -------------------------------------------------------------------------------- /packages/mpd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mpd/build.sh -------------------------------------------------------------------------------- /packages/mpv/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mpv/build.sh -------------------------------------------------------------------------------- /packages/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mpv/mpv.conf -------------------------------------------------------------------------------- /packages/mruby/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mruby/build.sh -------------------------------------------------------------------------------- /packages/msmtp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/msmtp/build.sh -------------------------------------------------------------------------------- /packages/mu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mu/build.sh -------------------------------------------------------------------------------- /packages/mupdf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mupdf/build.sh -------------------------------------------------------------------------------- /packages/mutt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mutt/build.sh -------------------------------------------------------------------------------- /packages/myman/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/myman/build.sh -------------------------------------------------------------------------------- /packages/mympd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/mympd/build.sh -------------------------------------------------------------------------------- /packages/n2n/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/n2n/build.sh -------------------------------------------------------------------------------- /packages/nala/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nala/build.sh -------------------------------------------------------------------------------- /packages/nali/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nali/build.sh -------------------------------------------------------------------------------- /packages/nano/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nano/build.sh -------------------------------------------------------------------------------- /packages/nasm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nasm/build.sh -------------------------------------------------------------------------------- /packages/navi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/navi/build.sh -------------------------------------------------------------------------------- /packages/ncdc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ncdc/build.sh -------------------------------------------------------------------------------- /packages/ncdu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ncdu/build.sh -------------------------------------------------------------------------------- /packages/ncdu2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ncdu2/build.sh -------------------------------------------------------------------------------- /packages/ncftp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ncftp/build.sh -------------------------------------------------------------------------------- /packages/ne/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ne/build.sh -------------------------------------------------------------------------------- /packages/nelua/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nelua/build.sh -------------------------------------------------------------------------------- /packages/nginx/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nginx/build.sh -------------------------------------------------------------------------------- /packages/nim/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nim/build.sh -------------------------------------------------------------------------------- /packages/ninja/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ninja/build.sh -------------------------------------------------------------------------------- /packages/nlopt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nlopt/build.sh -------------------------------------------------------------------------------- /packages/nmap/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nmap/build.sh -------------------------------------------------------------------------------- /packages/nmh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nmh/build.sh -------------------------------------------------------------------------------- /packages/nmon/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nmon/build.sh -------------------------------------------------------------------------------- /packages/nnn/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nnn/build.sh -------------------------------------------------------------------------------- /packages/npush/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/npush/build.sh -------------------------------------------------------------------------------- /packages/nsis/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nsis/build.sh -------------------------------------------------------------------------------- /packages/nwipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/nwipe/build.sh -------------------------------------------------------------------------------- /packages/ocrad/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ocrad/build.sh -------------------------------------------------------------------------------- /packages/oidn/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/oidn/build.sh -------------------------------------------------------------------------------- /packages/ol/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ol/build.sh -------------------------------------------------------------------------------- /packages/oleo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/oleo/build.sh -------------------------------------------------------------------------------- /packages/openssh/scp-with-agent.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | . source-ssh-agent 4 | scp "$@" 5 | -------------------------------------------------------------------------------- /packages/openssh/sftp-with-agent.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | . source-ssh-agent 4 | sftp "$@" 5 | -------------------------------------------------------------------------------- /packages/openssh/ssh-with-agent.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | . source-ssh-agent 4 | ssh "$@" 5 | -------------------------------------------------------------------------------- /packages/ovmf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ovmf/build.sh -------------------------------------------------------------------------------- /packages/p7zip/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/p7zip/build.sh -------------------------------------------------------------------------------- /packages/pango/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pango/build.sh -------------------------------------------------------------------------------- /packages/par2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/par2/build.sh -------------------------------------------------------------------------------- /packages/pari/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pari/build.sh -------------------------------------------------------------------------------- /packages/paruz/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/paruz/build.sh -------------------------------------------------------------------------------- /packages/pass/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pass/build.sh -------------------------------------------------------------------------------- /packages/patch/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/patch/build.sh -------------------------------------------------------------------------------- /packages/pb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pb/build.sh -------------------------------------------------------------------------------- /packages/pcal/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pcal/build.sh -------------------------------------------------------------------------------- /packages/pcre/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pcre/build.sh -------------------------------------------------------------------------------- /packages/pcre2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pcre2/build.sh -------------------------------------------------------------------------------- /packages/pdftk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pdftk/build.sh -------------------------------------------------------------------------------- /packages/peco/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/peco/build.sh -------------------------------------------------------------------------------- /packages/perl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/perl/build.sh -------------------------------------------------------------------------------- /packages/pet/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pet/build.sh -------------------------------------------------------------------------------- /packages/php/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/php/build.sh -------------------------------------------------------------------------------- /packages/pick/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pick/build.sh -------------------------------------------------------------------------------- /packages/pigz/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pigz/build.sh -------------------------------------------------------------------------------- /packages/pika/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pika/build.sh -------------------------------------------------------------------------------- /packages/plzip/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/plzip/build.sh -------------------------------------------------------------------------------- /packages/poke/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/poke/build.sh -------------------------------------------------------------------------------- /packages/procs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/procs/build.sh -------------------------------------------------------------------------------- /packages/proj/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/proj/build.sh -------------------------------------------------------------------------------- /packages/proot/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/proot/build.sh -------------------------------------------------------------------------------- /packages/ptex/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ptex/build.sh -------------------------------------------------------------------------------- /packages/pup/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pup/build.sh -------------------------------------------------------------------------------- /packages/pv/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pv/build.sh -------------------------------------------------------------------------------- /packages/pwgen/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pwgen/build.sh -------------------------------------------------------------------------------- /packages/pypy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pypy/build.sh -------------------------------------------------------------------------------- /packages/pypy3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/pypy3/build.sh -------------------------------------------------------------------------------- /packages/python-apsw/setup.cfg: -------------------------------------------------------------------------------- 1 | [build_ext] 2 | use_system_sqlite_config=True 3 | -------------------------------------------------------------------------------- /packages/qalc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/qalc/build.sh -------------------------------------------------------------------------------- /packages/qhull/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/qhull/build.sh -------------------------------------------------------------------------------- /packages/qpdf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/qpdf/build.sh -------------------------------------------------------------------------------- /packages/quilt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/quilt/build.sh -------------------------------------------------------------------------------- /packages/rage/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rage/build.sh -------------------------------------------------------------------------------- /packages/ragel/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ragel/build.sh -------------------------------------------------------------------------------- /packages/ratt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ratt/build.sh -------------------------------------------------------------------------------- /packages/rbw/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rbw/build.sh -------------------------------------------------------------------------------- /packages/rcm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rcm/build.sh -------------------------------------------------------------------------------- /packages/rcs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rcs/build.sh -------------------------------------------------------------------------------- /packages/re2c/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/re2c/build.sh -------------------------------------------------------------------------------- /packages/redir/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/redir/build.sh -------------------------------------------------------------------------------- /packages/redis/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/redis/build.sh -------------------------------------------------------------------------------- /packages/rgbds/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rgbds/build.sh -------------------------------------------------------------------------------- /packages/rhash/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rhash/build.sh -------------------------------------------------------------------------------- /packages/rig/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rig/build.sh -------------------------------------------------------------------------------- /packages/rip/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rip/build.sh -------------------------------------------------------------------------------- /packages/rirc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rirc/build.sh -------------------------------------------------------------------------------- /packages/rizin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rizin/build.sh -------------------------------------------------------------------------------- /packages/rnr/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rnr/build.sh -------------------------------------------------------------------------------- /packages/rpm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rpm/build.sh -------------------------------------------------------------------------------- /packages/rq/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rq/build.sh -------------------------------------------------------------------------------- /packages/rsync/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rsync/build.sh -------------------------------------------------------------------------------- /packages/ruby/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ruby/build.sh -------------------------------------------------------------------------------- /packages/ruff/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ruff/build.sh -------------------------------------------------------------------------------- /packages/ruff/ctermid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ruff/ctermid.c -------------------------------------------------------------------------------- /packages/runit/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/runit/build.sh -------------------------------------------------------------------------------- /packages/rush/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rush/build.sh -------------------------------------------------------------------------------- /packages/rust/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rust/build.sh -------------------------------------------------------------------------------- /packages/rust/syncfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rust/syncfs.c -------------------------------------------------------------------------------- /packages/rw/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/rw/build.sh -------------------------------------------------------------------------------- /packages/samba/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/samba/build.sh -------------------------------------------------------------------------------- /packages/sc-im/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/sc-im/build.sh -------------------------------------------------------------------------------- /packages/scala/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/scala/build.sh -------------------------------------------------------------------------------- /packages/scc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/scc/build.sh -------------------------------------------------------------------------------- /packages/scdoc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/scdoc/build.sh -------------------------------------------------------------------------------- /packages/scrub/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/scrub/build.sh -------------------------------------------------------------------------------- /packages/sd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/sd/build.sh -------------------------------------------------------------------------------- /packages/sdcv/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/sdcv/build.sh -------------------------------------------------------------------------------- /packages/sed/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/sed/build.sh -------------------------------------------------------------------------------- /packages/serd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/serd/build.sh -------------------------------------------------------------------------------- /packages/serf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/serf/build.sh -------------------------------------------------------------------------------- /packages/sfeed/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/sfeed/build.sh -------------------------------------------------------------------------------- /packages/shc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/shc/build.sh -------------------------------------------------------------------------------- /packages/shfmt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/shfmt/build.sh -------------------------------------------------------------------------------- /packages/simh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/simh/LICENSE -------------------------------------------------------------------------------- /packages/simh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/simh/build.sh -------------------------------------------------------------------------------- /packages/skate/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/skate/build.sh -------------------------------------------------------------------------------- /packages/sl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/sl/build.sh -------------------------------------------------------------------------------- /packages/slang/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/slang/build.sh -------------------------------------------------------------------------------- /packages/snake/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/snake/LICENSE -------------------------------------------------------------------------------- /packages/snake/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/snake/build.sh -------------------------------------------------------------------------------- /packages/socat/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/socat/build.sh -------------------------------------------------------------------------------- /packages/soju/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/soju/build.sh -------------------------------------------------------------------------------- /packages/sops/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/sops/build.sh -------------------------------------------------------------------------------- /packages/sord/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/sord/build.sh -------------------------------------------------------------------------------- /packages/sox/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/sox/build.sh -------------------------------------------------------------------------------- /packages/spark/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/spark/build.sh -------------------------------------------------------------------------------- /packages/squid/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/squid/build.sh -------------------------------------------------------------------------------- /packages/ssdb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ssdb/build.sh -------------------------------------------------------------------------------- /packages/ssss/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ssss/build.sh -------------------------------------------------------------------------------- /packages/stag/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/stag/build.sh -------------------------------------------------------------------------------- /packages/stfl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/stfl/build.sh -------------------------------------------------------------------------------- /packages/stone/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/stone/build.sh -------------------------------------------------------------------------------- /packages/stow/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/stow/build.sh -------------------------------------------------------------------------------- /packages/suil/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/suil/build.sh -------------------------------------------------------------------------------- /packages/sun/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/sun/build.sh -------------------------------------------------------------------------------- /packages/swaks/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/swaks/build.sh -------------------------------------------------------------------------------- /packages/swift/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/swift/build.sh -------------------------------------------------------------------------------- /packages/swig/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/swig/build.sh -------------------------------------------------------------------------------- /packages/swtpm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/swtpm/build.sh -------------------------------------------------------------------------------- /packages/tar/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tar/build.sh -------------------------------------------------------------------------------- /packages/tcc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tcc/build.sh -------------------------------------------------------------------------------- /packages/tcl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tcl/build.sh -------------------------------------------------------------------------------- /packages/tcsh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tcsh/build.sh -------------------------------------------------------------------------------- /packages/tdl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tdl/build.sh -------------------------------------------------------------------------------- /packages/tea/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tea/build.sh -------------------------------------------------------------------------------- /packages/tere/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tere/build.sh -------------------------------------------------------------------------------- /packages/teseq/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/teseq/build.sh -------------------------------------------------------------------------------- /packages/tidy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tidy/build.sh -------------------------------------------------------------------------------- /packages/tig/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tig/build.sh -------------------------------------------------------------------------------- /packages/tilde/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tilde/build.sh -------------------------------------------------------------------------------- /packages/time/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/time/build.sh -------------------------------------------------------------------------------- /packages/timg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/timg/build.sh -------------------------------------------------------------------------------- /packages/tk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tk/build.sh -------------------------------------------------------------------------------- /packages/tmate/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tmate/build.sh -------------------------------------------------------------------------------- /packages/tmux/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tmux/build.sh -------------------------------------------------------------------------------- /packages/tmux/tmux.conf: -------------------------------------------------------------------------------- 1 | set -g mouse on 2 | -------------------------------------------------------------------------------- /packages/tokei/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tokei/build.sh -------------------------------------------------------------------------------- /packages/tome2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tome2/LICENSE -------------------------------------------------------------------------------- /packages/tome2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tome2/build.sh -------------------------------------------------------------------------------- /packages/tor/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tor/build.sh -------------------------------------------------------------------------------- /packages/toxic/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/toxic/build.sh -------------------------------------------------------------------------------- /packages/tree/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tree/build.sh -------------------------------------------------------------------------------- /packages/trurl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/trurl/build.sh -------------------------------------------------------------------------------- /packages/tsu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tsu/build.sh -------------------------------------------------------------------------------- /packages/ttyc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ttyc/build.sh -------------------------------------------------------------------------------- /packages/ttyd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ttyd/build.sh -------------------------------------------------------------------------------- /packages/tut/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/tut/build.sh -------------------------------------------------------------------------------- /packages/typst/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/typst/build.sh -------------------------------------------------------------------------------- /packages/ugit/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ugit/build.sh -------------------------------------------------------------------------------- /packages/ugrep/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ugrep/build.sh -------------------------------------------------------------------------------- /packages/unar/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/unar/build.sh -------------------------------------------------------------------------------- /packages/units/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/units/build.sh -------------------------------------------------------------------------------- /packages/unrar/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/unrar/build.sh -------------------------------------------------------------------------------- /packages/unzip/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/unzip/build.sh -------------------------------------------------------------------------------- /packages/up/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/up/build.sh -------------------------------------------------------------------------------- /packages/upx/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/upx/build.sh -------------------------------------------------------------------------------- /packages/uucp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/uucp/build.sh -------------------------------------------------------------------------------- /packages/uwsgi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/uwsgi/build.sh -------------------------------------------------------------------------------- /packages/v2ray/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/v2ray/build.sh -------------------------------------------------------------------------------- /packages/valac/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/valac/build.sh -------------------------------------------------------------------------------- /packages/vale/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/vale/build.sh -------------------------------------------------------------------------------- /packages/vcsh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/vcsh/build.sh -------------------------------------------------------------------------------- /packages/vde2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/vde2/build.sh -------------------------------------------------------------------------------- /packages/vera/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/vera/build.sh -------------------------------------------------------------------------------- /packages/viddy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/viddy/build.sh -------------------------------------------------------------------------------- /packages/vifm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/vifm/build.sh -------------------------------------------------------------------------------- /packages/vile/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/vile/build.sh -------------------------------------------------------------------------------- /packages/vim/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/vim/build.sh -------------------------------------------------------------------------------- /packages/vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/vim/vimrc -------------------------------------------------------------------------------- /packages/vis/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/vis/build.sh -------------------------------------------------------------------------------- /packages/viu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/viu/build.sh -------------------------------------------------------------------------------- /packages/vivid/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/vivid/build.sh -------------------------------------------------------------------------------- /packages/vlc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/vlc/build.sh -------------------------------------------------------------------------------- /packages/vtm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/vtm/build.sh -------------------------------------------------------------------------------- /packages/w3m/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/w3m/build.sh -------------------------------------------------------------------------------- /packages/w3m/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/w3m/gc.h -------------------------------------------------------------------------------- /packages/wabt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/wabt/build.sh -------------------------------------------------------------------------------- /packages/walk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/walk/build.sh -------------------------------------------------------------------------------- /packages/wcalc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/wcalc/build.sh -------------------------------------------------------------------------------- /packages/wdiff/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/wdiff/build.sh -------------------------------------------------------------------------------- /packages/wego/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/wego/build.sh -------------------------------------------------------------------------------- /packages/wget/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/wget/build.sh -------------------------------------------------------------------------------- /packages/wget2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/wget2/build.sh -------------------------------------------------------------------------------- /packages/which/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/which/build.sh -------------------------------------------------------------------------------- /packages/whois/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/whois/build.sh -------------------------------------------------------------------------------- /packages/wiz/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/wiz/build.sh -------------------------------------------------------------------------------- /packages/woff2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/woff2/build.sh -------------------------------------------------------------------------------- /packages/wol/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/wol/build.sh -------------------------------------------------------------------------------- /packages/wren/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/wren/build.sh -------------------------------------------------------------------------------- /packages/wrk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/wrk/build.sh -------------------------------------------------------------------------------- /packages/wuzz/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/wuzz/build.sh -------------------------------------------------------------------------------- /packages/xh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/xh/build.sh -------------------------------------------------------------------------------- /packages/xmake/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/xmake/build.sh -------------------------------------------------------------------------------- /packages/xmlto/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/xmlto/build.sh -------------------------------------------------------------------------------- /packages/xmppc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/xmppc/build.sh -------------------------------------------------------------------------------- /packages/xpup/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/xpup/build.sh -------------------------------------------------------------------------------- /packages/yadm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/yadm/build.sh -------------------------------------------------------------------------------- /packages/yajl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/yajl/build.sh -------------------------------------------------------------------------------- /packages/yara/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/yara/build.sh -------------------------------------------------------------------------------- /packages/yarn/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/yarn/build.sh -------------------------------------------------------------------------------- /packages/yasm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/yasm/build.sh -------------------------------------------------------------------------------- /packages/yosys/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/yosys/build.sh -------------------------------------------------------------------------------- /packages/yq/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/yq/build.sh -------------------------------------------------------------------------------- /packages/ytfzf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/ytfzf/build.sh -------------------------------------------------------------------------------- /packages/z3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/z3/build.sh -------------------------------------------------------------------------------- /packages/zbar/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/zbar/build.sh -------------------------------------------------------------------------------- /packages/zig/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/zig/build.sh -------------------------------------------------------------------------------- /packages/zile/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/zile/build.sh -------------------------------------------------------------------------------- /packages/zip/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/zip/build.sh -------------------------------------------------------------------------------- /packages/zlib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/zlib/build.sh -------------------------------------------------------------------------------- /packages/zls/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/zls/build.sh -------------------------------------------------------------------------------- /packages/znc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/znc/build.sh -------------------------------------------------------------------------------- /packages/zpaq/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/zpaq/build.sh -------------------------------------------------------------------------------- /packages/zsh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/zsh/build.sh -------------------------------------------------------------------------------- /packages/zsh/etc-zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/zsh/etc-zshrc -------------------------------------------------------------------------------- /packages/zssh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/zssh/build.sh -------------------------------------------------------------------------------- /packages/zstd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/zstd/build.sh -------------------------------------------------------------------------------- /packages/zsync/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/zsync/build.sh -------------------------------------------------------------------------------- /packages/zzuf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/packages/zzuf/build.sh -------------------------------------------------------------------------------- /patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/patch.patch -------------------------------------------------------------------------------- /repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/repo.json -------------------------------------------------------------------------------- /sample/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/sample/build.sh -------------------------------------------------------------------------------- /scripts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/Dockerfile -------------------------------------------------------------------------------- /scripts/Dockerfile.cgct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/Dockerfile.cgct -------------------------------------------------------------------------------- /scripts/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/Vagrantfile -------------------------------------------------------------------------------- /scripts/aptly_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/aptly_api.sh -------------------------------------------------------------------------------- /scripts/big-pkgs.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/big-pkgs.list -------------------------------------------------------------------------------- /scripts/bin/apt-compare-versions: -------------------------------------------------------------------------------- 1 | ../updates/utils/termux_pkg_is_update_needed.sh -------------------------------------------------------------------------------- /scripts/bin/ldd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/bin/ldd -------------------------------------------------------------------------------- /scripts/bin/revbump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/bin/revbump -------------------------------------------------------------------------------- /scripts/build/termux_error_exit.sh: -------------------------------------------------------------------------------- 1 | termux_error_exit() { 2 | echo -e "ERROR: $*" 1>&2 3 | exit 1 4 | } 5 | -------------------------------------------------------------------------------- /scripts/build/termux_step_create_subpkg_debscripts.sh: -------------------------------------------------------------------------------- 1 | termux_step_create_subpkg_debscripts() { 2 | return 3 | } 4 | -------------------------------------------------------------------------------- /scripts/buildorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/buildorder.py -------------------------------------------------------------------------------- /scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/config.guess -------------------------------------------------------------------------------- /scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/config.sub -------------------------------------------------------------------------------- /scripts/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/profile.json -------------------------------------------------------------------------------- /scripts/properties.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/properties.sh -------------------------------------------------------------------------------- /scripts/run-docker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/run-docker.ps1 -------------------------------------------------------------------------------- /scripts/run-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/run-docker.sh -------------------------------------------------------------------------------- /scripts/setup-cgct.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/setup-cgct.sh -------------------------------------------------------------------------------- /scripts/setup-termux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/setup-termux.sh -------------------------------------------------------------------------------- /scripts/setup-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/setup-ubuntu.sh -------------------------------------------------------------------------------- /scripts/test-runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidIDEOfficial/terminal-packages/HEAD/scripts/test-runner.sh -------------------------------------------------------------------------------- /x11-packages/desktop-file-utils/hooks/triggers.in: -------------------------------------------------------------------------------- 1 | interest-noawait @TERMUX_PREFIX@/share/applications 2 | -------------------------------------------------------------------------------- /x11-packages/gtk2/hooks/triggers.in: -------------------------------------------------------------------------------- 1 | interest-noawait @TERMUX_PREFIX@/lib/gtk-2.0/2.10.0 2 | -------------------------------------------------------------------------------- /x11-packages/gtk3/hooks/triggers.in: -------------------------------------------------------------------------------- 1 | interest-noawait @TERMUX_PREFIX@/lib/gtk-3.0/3.0.0 2 | -------------------------------------------------------------------------------- /x11-packages/shared-mime-info/triggers: -------------------------------------------------------------------------------- 1 | interest-noawait @TERMUX_PREFIX@/share/mime/packages 2 | -------------------------------------------------------------------------------- /x11-packages/tuxpaint/.rebuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /x11-packages/xorg-mkfontscale/triggers: -------------------------------------------------------------------------------- 1 | interest-noawait @TERMUX_PREFIX@/share/fonts 2 | --------------------------------------------------------------------------------