├── README.md ├── core ├── baseinit │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── baselayout │ ├── README │ ├── build │ ├── checksums │ ├── files │ │ ├── crypttab │ │ ├── fstab │ │ ├── group │ │ ├── host.conf │ │ ├── hosts │ │ ├── issue │ │ ├── mime.types │ │ ├── os-release │ │ ├── passwd │ │ ├── profile │ │ ├── securetty │ │ ├── shadow │ │ └── shells │ ├── sources │ └── version ├── bison │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── busybox │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── .config │ │ ├── .config-suid │ │ ├── acpid.run │ │ ├── crond.run │ │ ├── mdev.conf │ │ ├── mdev.run │ │ ├── ntpd.run │ │ └── syslogd.run │ ├── patches │ │ ├── adduser-no-setgid.patch │ │ ├── fsck-resolve-uuid.patch │ │ ├── init-use-baseinit.patch │ │ ├── install-fix-chown.patch │ │ ├── lsusb-vendor-product.patch │ │ ├── modprobe-kernel-version.patch │ │ ├── print-unicode.patch │ │ └── unzip-usage-no-error.patch │ ├── sources │ └── version ├── bzip2 │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── certs │ ├── build │ ├── checksums │ ├── sources │ └── version ├── curl │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── flex │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── git │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── kiss │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── linux-headers │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── llvm │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── Distribution-stage2.cmake │ │ ├── Distribution.cmake │ │ └── c99 │ ├── patches │ │ └── glasnost.patch │ ├── sources │ └── version ├── m4 │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── make │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── musl │ ├── README │ ├── build │ ├── checksums │ ├── files │ │ ├── cdefs.h │ │ ├── getconf.c │ │ ├── getent.c │ │ ├── queue.h │ │ └── tree.h │ ├── sources │ └── version ├── openssl │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── pigz │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xz │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version └── zlib │ ├── README │ ├── build │ ├── checksums │ ├── patches │ └── cross.patch │ ├── sources │ └── version ├── extra ├── alsa-lib │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── clang16.patch │ │ └── fix-dlo.patch │ ├── sources │ └── version ├── alsa-utils │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── aria2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── autoconf │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── automake │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── baseinit │ ├── build │ ├── checksums │ ├── post-install │ ├── sources │ └── version ├── bash │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── btrfs-progs │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── clang.patch │ ├── sources │ └── version ├── cairo │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── cbindgen │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── cmake │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── kiss-cmake-config │ ├── sources │ └── version ├── dhcpcd │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── dhcpcd.run │ ├── sources │ └── version ├── dosfstools │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── e2fsprogs │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── efibootmgr │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── efivar │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── no-add-needed.patch │ ├── sources │ └── version ├── exfatprogs │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── expat │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── f2fs-tools │ ├── build │ ├── checksums │ ├── sources │ └── version ├── ffmpeg │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── ppc64.patch │ ├── sources │ └── version ├── file │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── findutils │ ├── build │ ├── checksums │ ├── sources │ └── version ├── firefox-privacy │ ├── README │ ├── build │ ├── checksums │ ├── files │ │ ├── policies.json │ │ └── vendor.js │ ├── sources │ └── version ├── firefox │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── stab.h │ ├── patches │ │ ├── avoid-redefinition.patch │ │ ├── disable-moz-stackwalk.patch │ │ ├── fix-clang-as.patch │ │ ├── fix-debug.patch │ │ ├── fix-fortify-system-wrappers.patch │ │ ├── fix-linux-header.patch │ │ ├── fix-ppc-clang-asm.patch │ │ ├── fix-rust-target.patch │ │ ├── fix-webrtc-glibcisms.patch │ │ ├── mallinfo.patch │ │ ├── no-fribidi.patch │ │ ├── no-x11.patch │ │ ├── sandbox-fork.patch │ │ ├── sandbox-largefile.patch │ │ └── sandbox-sched_setscheduler.patch │ ├── post-install │ ├── sources │ └── version ├── flac │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── fontconfig │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── fcobjshash.h │ ├── patches │ │ └── nojsonc.patch │ ├── post-install │ ├── sources │ └── version ├── freetype-harfbuzz │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gdk-pixbuf │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── post-install │ ├── sources │ └── version ├── giflib │ ├── build │ ├── checksums │ ├── sources │ └── version ├── glib │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gnugrep │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── gnupg1 │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── go │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gperf │ ├── build │ ├── checksums │ ├── sources │ └── version ├── gtk+3 │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── 01-no-fribidi.patch │ │ ├── 02-fix-firefox.patch │ │ └── 03-no-accessibility.patch │ ├── post-install │ ├── sources │ └── version ├── hicolor-icon-theme │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── htop │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── icu │ ├── build │ ├── checksums │ ├── sources │ └── version ├── intel-vaapi-driver │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── json-c │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── clang.patch │ ├── sources │ └── version ├── kirc │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── lame │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libass │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── no-fribidi.patch │ ├── sources │ └── version ├── libelf │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── musl.patch │ ├── sources │ └── version ├── libepoxy │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── liberation-fonts │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libevent │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libexecinfo │ ├── build │ ├── checksums │ ├── patches │ │ ├── 01-execinfo.patch │ │ ├── 02-makefile.patch │ │ ├── 03-define-gnu-source.patch │ │ ├── libexecinfo_pc.patch │ │ └── make.patch │ ├── sources │ └── version ├── libffi │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libglvnd │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libgpg-error │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libjpeg-turbo │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── no-docs.patch │ ├── sources │ └── version ├── libnvme │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libogg │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libpng │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── apng.patch │ ├── sources │ └── version ├── libretls │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libslirp │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libtheora │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── config.sub │ ├── patches │ │ ├── fix-theoraenc.patch │ │ └── libtheora-1.1.1-libpng16.patch │ ├── sources │ └── version ├── libtirpc │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libtool │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libudev-zero │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libva-utils │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libva-v4l2-request │ ├── build │ ├── depends │ ├── sources │ └── version ├── libva │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── undef.patch │ ├── sources │ └── version ├── libvorbis │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libvpx │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── vp8_rtcd.h │ │ ├── vp9_rtcd.h │ │ ├── vpx_dsp_rtcd.h │ │ └── vpx_scale_rtcd.h │ ├── sources │ └── version ├── libwebp │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libxml2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libyaml │ ├── build │ ├── checksums │ ├── manifest │ ├── sources │ └── version ├── links2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── lzip │ ├── build │ ├── checksums │ ├── sources │ └── version ├── lzo │ ├── build │ ├── checksums │ ├── sources │ └── version ├── man-pages │ ├── README │ ├── build │ ├── checksums │ ├── post-install │ ├── sources │ └── version ├── mandoc │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── mandoc-no-warn.patch │ ├── sources │ └── version ├── mdevd │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── mdevd.conf │ │ └── mdevd.run │ ├── patches │ │ └── cross.patch │ ├── sources │ └── version ├── mesa │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── wayland.patch │ ├── sources │ └── version ├── meson │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── kiss-meson-config │ ├── sources │ └── version ├── mpv │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── nano │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── nasm │ ├── build │ ├── checksums │ ├── sources │ └── version ├── ncurses │ ├── build │ ├── checksums │ ├── sources │ └── version ├── nettle │ ├── build │ ├── checksums │ ├── sources │ └── version ├── nmap │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── nodejs │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── nspr │ ├── build │ ├── checksums │ ├── sources │ └── version ├── nss │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── certdata.sh │ │ └── generated.hash │ ├── patches │ │ ├── native-nsinstall-cflags.patch │ │ ├── no-perl.patch │ │ └── respect-ldflags.patch │ ├── sources │ └── version ├── nvme-cli │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── opendoas │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── doas.conf │ ├── sources │ └── version ├── openresolv │ ├── build │ ├── checksums │ ├── sources │ └── version ├── openssh │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── sshd.run │ ├── post-install │ ├── sources │ └── version ├── opus │ ├── build │ ├── checksums │ ├── sources │ └── version ├── p11-kit │ ├── build │ ├── checksums │ ├── sources │ └── version ├── pango │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── no-fribidi.patch │ ├── sources │ └── version ├── patchelf │ ├── build │ ├── checksums │ ├── sources │ └── version ├── pciutils │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── pcre │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── pcre2 │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── perl │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── pfetch │ ├── build │ ├── checksums │ ├── sources │ └── version ├── picocom │ ├── build │ ├── sources │ └── version ├── pkgconf │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── plzip │ ├── build │ ├── checksums │ ├── sources │ └── version ├── python-docutils │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── python-mako │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── python-markupsafe │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── python │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── python3-always-pip.patch │ │ └── python3-pyc-hash.patch │ ├── sources │ └── version ├── qemu │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── musl-ppc.patch │ │ └── ppc-revert.patch │ ├── sources │ └── version ├── rsync │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── mkproto.awk │ ├── sources │ └── version ├── rust │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── stage0.json │ ├── patches │ │ ├── glasnost.patch │ │ └── openssl.patch │ ├── sources │ └── version ├── samurai │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── scdoc │ ├── README │ ├── build │ ├── checksums │ ├── patches │ │ └── clang.patch │ ├── sources │ └── version ├── sdl2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── skalibs │ ├── build │ ├── checksums │ ├── patches │ │ └── cross.patch │ ├── sources │ └── version ├── sqlite │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── ssu │ ├── README │ ├── build │ ├── checksums │ ├── post-install │ ├── sources │ └── version ├── strace │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── sudo │ ├── build │ ├── checksums │ ├── depends │ ├── post-install │ ├── sources │ └── version ├── tmux │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── reallocarray.patch │ ├── sources │ └── version ├── ttf-croscore │ ├── README │ ├── build │ ├── checksums │ ├── post-install │ ├── sources │ └── version ├── tzdata │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── uboot-tools │ ├── build │ ├── checksums │ ├── sources │ └── version ├── util-linux │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── vim │ ├── README │ ├── build │ ├── depends │ ├── sources │ └── version ├── visurf │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── nsgenbind.patch │ │ └── testament.patch │ ├── sources │ └── version ├── wpa_supplicant │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── .config │ │ └── wpa_supplicant.run │ ├── sources │ └── version ├── x264 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── config.guess │ │ └── config.sub │ ├── patches │ │ ├── portability.patch │ │ └── x264-no-bash.patch │ ├── sources │ └── version ├── x265 │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xvidcore │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── config.guess │ │ └── config.sub │ ├── sources │ └── version ├── yt-dlp │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── zip │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version └── zstd │ ├── README │ ├── build │ ├── checksums │ ├── sources │ └── version ├── gcc ├── _binutils │ ├── README │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── fix-fd-issue.patch │ ├── sources │ └── version ├── _gcc │ ├── README │ ├── build │ ├── checksums │ ├── files │ │ └── c99 │ ├── sources │ └── version ├── binutils-aarch64 ├── binutils-armnone ├── binutils-armv7 ├── binutils-i686 ├── binutils-or1k ├── binutils-powerpc ├── binutils-powerpc64 ├── binutils-powerpc64le ├── binutils-powerpcle ├── binutils-riscv64 ├── binutils-x86_64 ├── gcc-aarch64 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-armnone │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-armv7 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-i686 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-or1k │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-powerpc │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-powerpc64 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-powerpc64le │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-powerpcle │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── gcc-riscv64 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version └── gcc-x86_64 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ ├── sources │ └── version ├── system ├── atf │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── rk3399-baudrate.patch │ ├── sources │ └── version ├── crust │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0289a01c9ee211195728e14b4f26dd2e5226561a.patch │ ├── sources │ └── version ├── dtc │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── linux-pinephone │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── .config │ ├── patches │ │ └── all.patch │ ├── sources │ └── version ├── swig │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── uboot-pinephone │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── .config │ │ └── extlinux.conf │ ├── patches │ │ ├── 0001-ATF-set-fno-stack-protector.patch │ │ ├── 0001-mmc-sunxi-Avoid-ifdefs-in-delay-and-width-setup.patch │ │ ├── 0002-mmc-sunxi-Fix-warnings-with-CONFIG_PHYS_64BIT.patch │ │ ├── 0003-mmc-sunxi-Fix-MMC-clock-parent-selection.patch │ │ ├── 0004-mmc-sunxi-Cleanup-new-timing-mode-selection.patch │ │ ├── 0005-mmc-sunxi-Enable-new-timing-mode-on-all-new-SoCs.patch │ │ ├── 0006-mmc-sunxi-Cleanup-and-fix-self-calibration-code.patch │ │ ├── 0007-mmc-sunxi-Increase-MMIO-FIFO-read-performance.patch │ │ ├── 0008-mmc-sunxi-Use-mmc_of_parse.patch │ │ ├── 0009-sunxi-DT-H5-update-device-tree-files.patch │ │ ├── 0010-sunxi-DT-H6-update-device-tree-files.patch │ │ ├── 0011-phy-sun50i-usb3-Add-a-driver-for-the-H6-USB3-PHY.patch │ │ ├── 0012-usb-xhci-pci-Move-reset-logic-out-of-XHCI-core.patch │ │ ├── 0013-usb-xhci-dwc3-Add-support-for-clocks-resets.patch │ │ ├── 0014-configs-Enable-USB3-on-Allwinner-H6-boards.patch │ │ ├── 0015-tools-Refactor-mkimage-linking-with-OpenSSL.patch │ │ ├── 0016-tools-mkimage-Add-Allwinner-TOC0-support.patch │ │ ├── 0017-sunxi-Support-both-SPL-image-types.patch │ │ ├── 0018-sunxi-Support-building-a-SPL-as-a-TOC0-image.patch │ │ ├── 0019-sunxi-H616-Enable-full-4GB-of-DRAM.patch │ │ ├── 0020-sunxi-DT-H6-Add-USB3-to-Pine-H64-DTS.patch │ │ ├── 0021-sunxi-Select-environment-MMC-based-on-boot-device.patch │ │ ├── 0022-sunxi-Load-sun8i-secure-monitor-to-SRAM-A2.patch │ │ ├── 0023-pinephone-Add-volume_key-environment-variable.patch │ │ ├── 0024-Enable-led-on-boot-to-notify-user-of-boot-status.patch │ │ ├── 0025-disable-bootdelay.patch │ │ ├── 0026-Reduce-DRAM-speed-to-528-for-better-compatibility-wi.patch │ │ ├── 0027-mmc-sunxi-Add-support-for-DMA-transfers.patch │ │ ├── 0028-mmc-sunxi-DDR-DMA-support-for-SPL.patch │ │ ├── 0029-spl-ARM-Enable-CPU-caches.patch │ │ ├── 0030-common-expose-DRAM-clock-speed.patch │ │ └── Improve-Allwinner-A64-timer-workaround.patch │ ├── post-install │ ├── sources │ └── version └── uboot-tools │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version └── wayland ├── bemenu ├── build ├── checksums ├── depends ├── sources └── version ├── foot ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── grim ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── libdrm ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── libevdev ├── build ├── checksums ├── sources └── version ├── libinput ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── libpciaccess ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── libseat ├── README ├── build ├── checksums ├── depends ├── files │ └── seatd.run ├── sources └── version ├── libxkbcommon ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── mtdev ├── build ├── checksums ├── files │ └── config.sub ├── sources └── version ├── pixman ├── README ├── build ├── checksums ├── sources └── version ├── slurp ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── sway ├── README ├── build ├── checksums ├── depends ├── patches │ └── no-evdev.patch ├── post-install ├── sources └── version ├── swayidle ├── build ├── checksums ├── depends ├── sources └── version ├── swaylock-effects ├── build ├── checksums ├── depends ├── sources └── version ├── swaylock ├── build ├── checksums ├── depends ├── sources └── version ├── wayland-protocols ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── wayland ├── README ├── build ├── checksums ├── depends ├── patches │ └── cross.patch ├── sources └── version ├── wbg ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── wlr-randr ├── build ├── checksums ├── depends ├── sources └── version ├── wlroots ├── README ├── build ├── checksums ├── depends ├── patches │ └── cross.patch ├── sources └── version ├── wlsunset ├── README ├── build ├── checksums ├── depends ├── sources └── version ├── wvkbd ├── build ├── checksums ├── patches │ ├── mobile.patch │ └── ppp.patch ├── sources └── version └── xkeyboard-config ├── README ├── build ├── checksums ├── files └── xml2lst ├── sources └── version /core/baseinit/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -ef 2 | 3 | mkdir -p \ 4 | "$1/usr/bin" \ 5 | "$1/usr/share/doc/kiss/init" 6 | 7 | cp -R etc "$1" 8 | cp -R lib "$1/usr/lib" 9 | 10 | # Disable warning as CFLAGS must work this way. 11 | # shellcheck disable=2086 12 | for bin in kpow kall; do 13 | clang -o "$1/usr/bin/$bin" "bin/$bin.c" $CFLAGS -static 14 | cp -f "bin/$bin.c" "$1/usr/share/doc/kiss/init/$bin.c" 15 | done 16 | -------------------------------------------------------------------------------- /core/baseinit/checksums: -------------------------------------------------------------------------------- 1 | 889d02e36c5808b1adadaa4e567df3fef97156e38a477579a20e7c53622018d6 2 | -------------------------------------------------------------------------------- /core/baseinit/sources: -------------------------------------------------------------------------------- 1 | https://github.com/kisslinux/init/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /core/baseinit/version: -------------------------------------------------------------------------------- 1 | 1.0.3 2 2 | -------------------------------------------------------------------------------- /core/baselayout/files/fstab: -------------------------------------------------------------------------------- 1 | # Static information about the filesystems. 2 | # See fstab(5) for details. 3 | 4 | # 5 | 6 | tmpfs /tmp tmpfs defaults,nosuid,nodev 0 0 7 | -------------------------------------------------------------------------------- /core/baselayout/files/host.conf: -------------------------------------------------------------------------------- 1 | # /etc/host.conf 2 | # See host.conf(5) for details. 3 | 4 | multi on 5 | -------------------------------------------------------------------------------- /core/baselayout/files/hosts: -------------------------------------------------------------------------------- 1 | 2 | # 3 | # /etc/hosts: static lookup table for host names 4 | # 5 | 6 | # 7 | 127.0.0.1 localhost.localdomain localhost 8 | ::1 localhost.localdomain localhost ip6-localhost 9 | 10 | # EOF 11 | -------------------------------------------------------------------------------- /core/baselayout/files/issue: -------------------------------------------------------------------------------- 1 | Glasnost Linux \r (\l) 2 | -------------------------------------------------------------------------------- /core/baselayout/files/os-release: -------------------------------------------------------------------------------- 1 | NAME="Glasnost Linux" 2 | PRETTY_NAME="Glasnost Linux" 3 | ID=glasnost 4 | BUILD_ID=rolling 5 | HOME_URL="https://glasnost.org" 6 | DOCUMENTATION_URL="https://glasnost.org" 7 | SUPPORT_URL="https://github.com/glasnostlinux" 8 | BUG_REPORT_URL="https://github.com/glasnostlinux" 9 | -------------------------------------------------------------------------------- /core/baselayout/files/passwd: -------------------------------------------------------------------------------- 1 | root:x:0:0:root:/root:/bin/sh 2 | nobody:x:99:99:Unprivileged User:/dev/null:/bin/false 3 | -------------------------------------------------------------------------------- /core/baselayout/files/securetty: -------------------------------------------------------------------------------- 1 | console 2 | vc/1 3 | vc/2 4 | vc/3 5 | vc/4 6 | vc/5 7 | vc/6 8 | vc/7 9 | vc/8 10 | vc/9 11 | vc/10 12 | vc/11 13 | tty1 14 | tty2 15 | tty3 16 | tty4 17 | tty5 18 | tty6 19 | tty7 20 | tty8 21 | tty9 22 | tty10 23 | tty11 24 | ttyS0 25 | ttyAMA0 26 | ttyUSB0 27 | -------------------------------------------------------------------------------- /core/baselayout/files/shadow: -------------------------------------------------------------------------------- 1 | root::14871:::::: 2 | -------------------------------------------------------------------------------- /core/baselayout/files/shells: -------------------------------------------------------------------------------- 1 | # Pathnames of valid login shells. 2 | # See shells(5) for details. 3 | 4 | /bin/sh 5 | -------------------------------------------------------------------------------- /core/baselayout/sources: -------------------------------------------------------------------------------- 1 | files/crypttab 2 | files/fstab 3 | files/group 4 | files/host.conf 5 | files/hosts 6 | files/issue 7 | files/mime.types 8 | files/os-release 9 | files/passwd 10 | files/profile 11 | files/securetty 12 | files/shadow 13 | files/shells 14 | -------------------------------------------------------------------------------- /core/baselayout/version: -------------------------------------------------------------------------------- 1 | 1 8 2 | -------------------------------------------------------------------------------- /core/bison/checksums: -------------------------------------------------------------------------------- 1 | 9bba0214ccf7f1079c5d59210045227bcf619519840ebfa80cd3849cff5a5bf2 2 | -------------------------------------------------------------------------------- /core/bison/depends: -------------------------------------------------------------------------------- 1 | m4 2 | -------------------------------------------------------------------------------- /core/bison/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/bison/bison-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /core/bison/version: -------------------------------------------------------------------------------- 1 | 3.8.2 1 2 | -------------------------------------------------------------------------------- /core/busybox/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /core/busybox/files/acpid.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec acpid -f 3 | -------------------------------------------------------------------------------- /core/busybox/files/crond.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec crond -f 3 | -------------------------------------------------------------------------------- /core/busybox/files/mdev.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Null the legacy hotplugger as the 4 | # service will take over from here. 5 | printf '\n' 2>/dev/null \ 6 | > /proc/sys/kernel/hotplug 7 | 8 | exec mdev -df 9 | -------------------------------------------------------------------------------- /core/busybox/files/ntpd.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec ntpd -n 4 | -------------------------------------------------------------------------------- /core/busybox/files/syslogd.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec syslogd -n 3 | -------------------------------------------------------------------------------- /core/busybox/version: -------------------------------------------------------------------------------- 1 | 1.35.0 2 2 | -------------------------------------------------------------------------------- /core/bzip2/checksums: -------------------------------------------------------------------------------- 1 | ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269 2 | -------------------------------------------------------------------------------- /core/bzip2/sources: -------------------------------------------------------------------------------- 1 | https://sourceware.org/pub/bzip2/bzip2-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /core/bzip2/version: -------------------------------------------------------------------------------- 1 | 1.0.8 1 2 | -------------------------------------------------------------------------------- /core/certs/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | mkdir -p "$1/etc/ssl" 4 | cp "cacert-$2.pem" "$1/etc/ssl/cert.pem" 5 | -------------------------------------------------------------------------------- /core/certs/checksums: -------------------------------------------------------------------------------- 1 | 2cff03f9efdaf52626bd1b451d700605dc1ea000c5da56bd0fc59f8f43071040 2 | -------------------------------------------------------------------------------- /core/certs/sources: -------------------------------------------------------------------------------- 1 | https://curl.se/ca/cacert-VERSION.pem 2 | -------------------------------------------------------------------------------- /core/certs/version: -------------------------------------------------------------------------------- 1 | 2022-10-11 1 2 | -------------------------------------------------------------------------------- /core/curl/checksums: -------------------------------------------------------------------------------- 1 | ee5f1a1955b0ed413435ef79db28b834ea5f0fb7c8cfb1ce47175cc3bee08fff 2 | -------------------------------------------------------------------------------- /core/curl/depends: -------------------------------------------------------------------------------- 1 | openssl 2 | zlib 3 | -------------------------------------------------------------------------------- /core/curl/sources: -------------------------------------------------------------------------------- 1 | https://curl.haxx.se/download/curl-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /core/curl/version: -------------------------------------------------------------------------------- 1 | 7.87.0 1 2 | -------------------------------------------------------------------------------- /core/flex/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE \ 7 | ac_cv_func_malloc_0_nonnull=yes \ 8 | ac_cv_func_realloc_0_nonnull=yes 9 | 10 | make 11 | make install 12 | 13 | ln -s flex "$1/usr/bin/lex" 14 | 15 | # Remove READMEs and such. 16 | rm -rf "$1/usr/share/doc" 17 | -------------------------------------------------------------------------------- /core/flex/checksums: -------------------------------------------------------------------------------- 1 | e87aae032bf07c26f85ac0ed3250998c37621d95f8bd748b31f15b33c45ee995 2 | -------------------------------------------------------------------------------- /core/flex/depends: -------------------------------------------------------------------------------- 1 | m4 make 2 | -------------------------------------------------------------------------------- /core/flex/sources: -------------------------------------------------------------------------------- 1 | https://github.com/westes/flex/releases/download/vVERSION/flex-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /core/flex/version: -------------------------------------------------------------------------------- 1 | 2.6.4 4 2 | -------------------------------------------------------------------------------- /core/git/checksums: -------------------------------------------------------------------------------- 1 | ba199b13fb5a99ca3dec917b0bd736bc0eb5a9df87737d435eddfdf10d69265b 2 | 7770f6d542cc34a2ccfaf02b82d7f9aefcd5d5156db847f36c218322671e9467 3 | -------------------------------------------------------------------------------- /core/git/depends: -------------------------------------------------------------------------------- 1 | curl make 2 | openssl make 3 | zlib make 4 | -------------------------------------------------------------------------------- /core/git/sources: -------------------------------------------------------------------------------- 1 | https://mirrors.edge.kernel.org/pub/software/scm/git/git-VERSION.tar.xz 2 | https://mirrors.edge.kernel.org/pub/software/scm/git/git-manpages-VERSION.tar.xz man 3 | -------------------------------------------------------------------------------- /core/git/version: -------------------------------------------------------------------------------- 1 | 2.39.0 1 2 | -------------------------------------------------------------------------------- /core/kiss/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | mkdir -p \ 4 | "$1/usr/bin" \ 5 | "$1/usr/share/doc/kiss" 6 | 7 | cp -f kiss contrib/* "$1/usr/bin" 8 | cp -f docs/site/*.txt "$1/usr/share/doc/kiss" 9 | cp -rf docs/site/wiki "$1/usr/share/doc/kiss" 10 | 11 | rm -f \ 12 | "$1/usr/share/doc/kiss/README.txt" \ 13 | "$1/usr/share/doc/kiss/post.txt" \ 14 | "$1/usr/share/doc/kiss/tidbits.txt" 15 | -------------------------------------------------------------------------------- /core/kiss/checksums: -------------------------------------------------------------------------------- 1 | bda7d1c865d6020196ffc3dc720530869b395c79d19ede25a97326bac4f4fec2 2 | -------------------------------------------------------------------------------- /core/kiss/depends: -------------------------------------------------------------------------------- 1 | git 2 | -------------------------------------------------------------------------------- /core/kiss/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/glasnostlinux/kiss.git#283f719e6578a870433e19ad503d73e31b0b21eb 2 | https://github.com/kisslinux/website/archive/36935cdf3e7e453bf02224485bf0326442dae03c.tar.gz docs 3 | -------------------------------------------------------------------------------- /core/kiss/version: -------------------------------------------------------------------------------- 1 | 5.5.28 4 2 | -------------------------------------------------------------------------------- /core/linux-headers/checksums: -------------------------------------------------------------------------------- 1 | 36345db17a937c197c72ca9c7f34c262b3a12f927c237ff7770193014e29c690 2 | -------------------------------------------------------------------------------- /core/linux-headers/sources: -------------------------------------------------------------------------------- 1 | https://mirrors.edge.kernel.org/pub/linux/kernel/vMAJOR.x/linux-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /core/linux-headers/version: -------------------------------------------------------------------------------- 1 | 5.15.36 1 2 | -------------------------------------------------------------------------------- /core/llvm/checksums: -------------------------------------------------------------------------------- 1 | 9d53ad04dc60cb7b30e810faf64c5ab8157dadef46c8766f67f286238256ff92 2 | 765614b3396d70bca3fa0ae4a813632486c6dca320e2bd13c8c39dca52be4a4c 3 | 22f50f4274bbbab02b03dde2fe95e66619eccc8503eb58d6fff3f247b07c46bf 4 | 3ab48d309bc42157c7044a1ed1a34f1b17839e67778c0b172679119c14e5e1fd 5 | 4644309d036d65d01cbb10d82a8a2c5702345f1f2bd04501d2a774bd9c566d7d 6 | -------------------------------------------------------------------------------- /core/llvm/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | python make 3 | samurai make 4 | zlib 5 | -------------------------------------------------------------------------------- /core/llvm/files/c99: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec cc -std=c99 "$@" 3 | -------------------------------------------------------------------------------- /core/llvm/sources: -------------------------------------------------------------------------------- 1 | https://github.com/llvm/llvm-project/releases/download/llvmorg-VERSION/llvm-project-VERSION.src.tar.xz 2 | files/c99 3 | files/Distribution.cmake 4 | files/Distribution-stage2.cmake 5 | patches/glasnost.patch 6 | -------------------------------------------------------------------------------- /core/llvm/version: -------------------------------------------------------------------------------- 1 | 15.0.6 1 2 | -------------------------------------------------------------------------------- /core/m4/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /core/m4/checksums: -------------------------------------------------------------------------------- 1 | 63aede5c6d33b6d9b13511cd0be2cac046f2e70fd0a07aa9573a04a82783af96 2 | -------------------------------------------------------------------------------- /core/m4/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/m4/m4-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /core/m4/version: -------------------------------------------------------------------------------- 1 | 1.4.19 1 2 | -------------------------------------------------------------------------------- /core/make/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CFLAGS="$CFLAGS -static" 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --build=$KISS_XBUILD_TRIPLE \ 8 | --host=$KISS_XHOST_TRIPLE 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /core/make/checksums: -------------------------------------------------------------------------------- 1 | 581f4d4e872da74b3941c874215898a7d35802f03732bdccee1d4a7979105d18 2 | -------------------------------------------------------------------------------- /core/make/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/make/make-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /core/make/version: -------------------------------------------------------------------------------- 1 | 4.4 1 2 | -------------------------------------------------------------------------------- /core/musl/checksums: -------------------------------------------------------------------------------- 1 | 7d5b0b6062521e4627e099e4c9dc8248d32a30285e959b7eecaa780cf8cfd4a4 2 | a83818007069c222d24d283a99348c2376f35bac3282d8142004c47d3dc5ecac 3 | c13407edd0e33be73cae72514cb234f8612e1c0e54401c9448daffd3a240158b 4 | e1e498a79bf160a5766fa560f2b07b206fe89fe21a62600c77d72e00a6992f92 5 | d87d0cbb3690ae2c5d8cc218349fd8278b93855dd625deaf7ae50e320aad247c 6 | b323f20c9bf560a13c877eb05428bc4a203383697bac763e7b12865db5c5922c 7 | -------------------------------------------------------------------------------- /core/musl/sources: -------------------------------------------------------------------------------- 1 | https://www.musl-libc.org/releases/musl-VERSION.tar.gz 2 | files/cdefs.h 3 | files/queue.h 4 | files/tree.h 5 | files/getconf.c 6 | files/getent.c 7 | -------------------------------------------------------------------------------- /core/musl/version: -------------------------------------------------------------------------------- 1 | 1.2.3 1 2 | -------------------------------------------------------------------------------- /core/openssl/checksums: -------------------------------------------------------------------------------- 1 | 83049d042a260e696f62406ac5c08bf706fd84383f945cf21bd61e9ed95c396e 2 | -------------------------------------------------------------------------------- /core/openssl/depends: -------------------------------------------------------------------------------- 1 | certs 2 | perl make 3 | -------------------------------------------------------------------------------- /core/openssl/sources: -------------------------------------------------------------------------------- 1 | https://www.openssl.org/source/openssl-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /core/openssl/version: -------------------------------------------------------------------------------- 1 | 3.0.7 1 2 | -------------------------------------------------------------------------------- /core/pigz/checksums: -------------------------------------------------------------------------------- 1 | b4c9e60344a08d5db37ca7ad00a5b2c76ccb9556354b722d56d55ca7e8b1c707 2 | -------------------------------------------------------------------------------- /core/pigz/depends: -------------------------------------------------------------------------------- 1 | zlib make 2 | -------------------------------------------------------------------------------- /core/pigz/sources: -------------------------------------------------------------------------------- 1 | https://zlib.net/pigz/pigz-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /core/pigz/version: -------------------------------------------------------------------------------- 1 | 2.7 1 2 | -------------------------------------------------------------------------------- /core/xz/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | # Remove cflags which cause issues 4 | #export CFLAGS="$CFLAGS -O0 -fno-lto " 5 | export CFLAGS="$CFLAGS -fno-lto" 6 | 7 | ./configure \ 8 | --prefix=/usr \ 9 | --disable-doc \ 10 | --disable-nls \ 11 | --build=$KISS_XBUILD_TRIPLE \ 12 | --host=$KISS_XHOST_TRIPLE 13 | 14 | make 15 | make install 16 | -------------------------------------------------------------------------------- /core/xz/checksums: -------------------------------------------------------------------------------- 1 | 7471ef5991f690268a8f2be019acec2e0564b7b233ca40035f339fe9a07f830b 2 | -------------------------------------------------------------------------------- /core/xz/sources: -------------------------------------------------------------------------------- 1 | https://tukaani.org/xz/xz-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /core/xz/version: -------------------------------------------------------------------------------- 1 | 5.4.0 1 2 | -------------------------------------------------------------------------------- /core/zlib/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CFLAGS="$CFLAGS -fPIC" 4 | 5 | patch -p1 < cross.patch 6 | 7 | ./configure \ 8 | --prefix=/usr \ 9 | --archs="-arch $KISS_XHOST_ARCH" 10 | 11 | make 12 | make install 13 | -------------------------------------------------------------------------------- /core/zlib/checksums: -------------------------------------------------------------------------------- 1 | b3a24de97a8fdbc835b9833169501030b8977031bcb54b3b3ac13740f846ab30 2 | 48cee49448ebe8c8b1e2270f0f4e49893e09c41a128475d2cbcfd90511ac9192 3 | -------------------------------------------------------------------------------- /core/zlib/patches/cross.patch: -------------------------------------------------------------------------------- 1 | --- a/zlib.pc.in 2 | +++ a/zlib.pc.in 3 | @@ -9,5 +9,5 @@ 4 | Version: @VERSION@ 5 | 6 | Requires: 7 | -Libs: -L${libdir} -L${sharedlibdir} -lz 8 | +Libs: -lz 9 | Cflags: -I${includedir} 10 | -------------------------------------------------------------------------------- /core/zlib/sources: -------------------------------------------------------------------------------- 1 | https://zlib.net/zlib-VERSION.tar.gz 2 | patches/cross.patch 3 | -------------------------------------------------------------------------------- /core/zlib/version: -------------------------------------------------------------------------------- 1 | 1.2.13 1 2 | -------------------------------------------------------------------------------- /extra/alsa-lib/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | patch -p1 < clang16.patch 4 | 5 | #export LDFLAGS="$LDFLAGS -Wl,--undefined-version -L$KISS_ROOT/usr/lib -w" 6 | 7 | export CFLAGS="$CFLAGS -Wl,--undefined-version -w -L$KISS_ROOT/usr/lib -w" 8 | 9 | ./configure \ 10 | --without-debug \ 11 | --prefix=/usr \ 12 | --build=$KISS_XBUILD_TRIPLE \ 13 | --host=$KISS_XHOST_TRIPLE 14 | 15 | make 16 | make install 17 | -------------------------------------------------------------------------------- /extra/alsa-lib/checksums: -------------------------------------------------------------------------------- 1 | 1ab01b74e33425ca99c2e36c0844fd6888273193bd898240fe8f93accbcbf347 2 | 714b2b5653a48a7ce8bc29548488e3ce9dcabb937a61ccbdb000d783c51af5fa 3 | af2775ac8f84512cc32ddde11d480def8d3cc63985911cce84cc9f2adc17e197 4 | -------------------------------------------------------------------------------- /extra/alsa-lib/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/alsa-lib/sources: -------------------------------------------------------------------------------- 1 | https://www.alsa-project.org/files/pub/lib/alsa-lib-VERSION.tar.bz2 2 | patches/fix-dlo.patch 3 | patches/clang16.patch 4 | -------------------------------------------------------------------------------- /extra/alsa-lib/version: -------------------------------------------------------------------------------- 1 | 1.2.8 1 2 | -------------------------------------------------------------------------------- /extra/alsa-utils/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE \ 7 | --sbindir=/usr/bin \ 8 | --with-udev-rules-dir=/usr/lib/udev/rules.d \ 9 | --disable-alsaconf \ 10 | --disable-bat \ 11 | --disable-xmlto \ 12 | --disable-nls 13 | 14 | make 15 | make install 16 | -------------------------------------------------------------------------------- /extra/alsa-utils/checksums: -------------------------------------------------------------------------------- 1 | e140fa604c351f36bd72167c8860c69d81b964ae6ab53992d6434dde38e9333c 2 | -------------------------------------------------------------------------------- /extra/alsa-utils/depends: -------------------------------------------------------------------------------- 1 | alsa-lib 2 | ncurses 3 | -------------------------------------------------------------------------------- /extra/alsa-utils/sources: -------------------------------------------------------------------------------- 1 | https://www.alsa-project.org/files/pub/utils/alsa-utils-VERSION.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/alsa-utils/version: -------------------------------------------------------------------------------- 1 | 1.2.8 1 2 | -------------------------------------------------------------------------------- /extra/aria2/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE \ 7 | --disable-nls \ 8 | --disable-metalink \ 9 | --disable-websocket \ 10 | --without-libxml2 \ 11 | --without-libexpat \ 12 | --without-sqlite3 13 | 14 | make 15 | make install 16 | -------------------------------------------------------------------------------- /extra/aria2/checksums: -------------------------------------------------------------------------------- 1 | 58d1e7608c12404f0229a3d9a4953d0d00c18040504498b483305bcb3de907a5 2 | -------------------------------------------------------------------------------- /extra/aria2/depends: -------------------------------------------------------------------------------- 1 | openssl 2 | xz 3 | zlib 4 | -------------------------------------------------------------------------------- /extra/aria2/sources: -------------------------------------------------------------------------------- 1 | https://github.com/tatsuhiro-t/aria2/releases/download/release-1.36.0/aria2-1.36.0.tar.xz 2 | -------------------------------------------------------------------------------- /extra/aria2/version: -------------------------------------------------------------------------------- 1 | 1.36.0 1 2 | -------------------------------------------------------------------------------- /extra/autoconf/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE 7 | 8 | make 9 | make install 10 | -------------------------------------------------------------------------------- /extra/autoconf/checksums: -------------------------------------------------------------------------------- 1 | 431075ad0bf529ef13cb41e9042c542381103e80015686222b8a9d4abef42a1c 2 | -------------------------------------------------------------------------------- /extra/autoconf/depends: -------------------------------------------------------------------------------- 1 | m4 2 | perl 3 | -------------------------------------------------------------------------------- /extra/autoconf/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/pub/gnu/autoconf/autoconf-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/autoconf/version: -------------------------------------------------------------------------------- 1 | 2.71 1 2 | -------------------------------------------------------------------------------- /extra/automake/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /extra/automake/checksums: -------------------------------------------------------------------------------- 1 | 07bd24ad08a64bc17250ce09ec56e921d6343903943e99ccf63bbf0705e34605 2 | -------------------------------------------------------------------------------- /extra/automake/depends: -------------------------------------------------------------------------------- 1 | autoconf 2 | perl 3 | -------------------------------------------------------------------------------- /extra/automake/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/automake/automake-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/automake/version: -------------------------------------------------------------------------------- 1 | 1.16.5 1 2 | -------------------------------------------------------------------------------- /extra/baseinit/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -ef 2 | 3 | mkdir -p "$1/usr/bin" 4 | 5 | cp -R etc "$1" 6 | cp -R lib "$1/usr/lib" 7 | 8 | # Disable warning as CFLAGS must work this way. 9 | # shellcheck disable=2086 10 | for bin in kpow kall; do 11 | clang -o "$1/usr/bin/$bin" "bin/$bin.c" $CFLAGS -static 12 | install -Dm644 "bin/$bin.c" "$1/usr/share/doc/kiss/init/$bin.c" 13 | done 14 | -------------------------------------------------------------------------------- /extra/baseinit/checksums: -------------------------------------------------------------------------------- 1 | 2dbb2141cfd1b24d604ccdac4ee9422987c74efac75c05631bbb66d2d646eb0d 2 | -------------------------------------------------------------------------------- /extra/baseinit/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cat <&1 3 | -------------------------------------------------------------------------------- /extra/dhcpcd/sources: -------------------------------------------------------------------------------- 1 | https://github.com/rsmarples/dhcpcd/archive/dhcpcd-VERSION.tar.gz 2 | files/dhcpcd.run 3 | -------------------------------------------------------------------------------- /extra/dhcpcd/version: -------------------------------------------------------------------------------- 1 | 9.4.1 2 2 | -------------------------------------------------------------------------------- /extra/dosfstools/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | # Disable documentation (READMEs and such). 4 | sed 's/^\(dist_doc_DATA\)/\1_null/' Makefile.in > _ 5 | mv -f _ Makefile.in 6 | 7 | ./configure \ 8 | --prefix=/usr \ 9 | --build=$KISS_XBUILD_TRIPLE \ 10 | --host=$KISS_XHOST_TRIPLE \ 11 | --sbindir=/usr/bin \ 12 | --mandir=/usr/share/man \ 13 | --enable-compat-symlinks 14 | 15 | make 16 | make install 17 | -------------------------------------------------------------------------------- /extra/dosfstools/checksums: -------------------------------------------------------------------------------- 1 | 64926eebf90092dca21b14259a5301b7b98e7b1943e8a201c7d726084809b527 2 | -------------------------------------------------------------------------------- /extra/dosfstools/sources: -------------------------------------------------------------------------------- 1 | https://github.com/dosfstools/dosfstools/releases/download/vVERSION/dosfstools-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/dosfstools/version: -------------------------------------------------------------------------------- 1 | 4.2 1 2 | -------------------------------------------------------------------------------- /extra/e2fsprogs/checksums: -------------------------------------------------------------------------------- 1 | 144af53f2bbd921cef6f8bea88bb9faddca865da3fbc657cc9b4d2001097d5db 2 | -------------------------------------------------------------------------------- /extra/e2fsprogs/sources: -------------------------------------------------------------------------------- 1 | https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/vVERSION/e2fsprogs-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /extra/e2fsprogs/version: -------------------------------------------------------------------------------- 1 | 1.47.0 1 2 | -------------------------------------------------------------------------------- /extra/efibootmgr/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make CC="${CC:-cc}" EFIDIR=/boot/EFI efibootmgr 4 | 5 | mkdir -p \ 6 | "$1/usr/bin" \ 7 | "$1/usr/share/man/man8" 8 | 9 | cp -f src/efibootmgr "$1/usr/bin" 10 | cp -f src/efibootmgr.8.in "$1/usr/share/man/man8/efibootmgr.8" 11 | -------------------------------------------------------------------------------- /extra/efibootmgr/checksums: -------------------------------------------------------------------------------- 1 | 442867d12f8525034a404fc8af3036dba8e1fc970998af2486c3b940dfad0874 2 | -------------------------------------------------------------------------------- /extra/efibootmgr/depends: -------------------------------------------------------------------------------- 1 | efivar 2 | linux-headers make 3 | pkgconf make 4 | -------------------------------------------------------------------------------- /extra/efibootmgr/sources: -------------------------------------------------------------------------------- 1 | https://github.com/rhboot/efibootmgr/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/efibootmgr/version: -------------------------------------------------------------------------------- 1 | 18 1 2 | -------------------------------------------------------------------------------- /extra/efivar/checksums: -------------------------------------------------------------------------------- 1 | bcb74d7fd3145a050f0a38f42fc8cbcf4e855c1d2ec5e6869aebe31f00a8fbfc 2 | bad5af225196cccad29f488015399830a44de71bf955c5b29b432b68fe96083a 3 | -------------------------------------------------------------------------------- /extra/efivar/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | mandoc make 3 | -------------------------------------------------------------------------------- /extra/efivar/sources: -------------------------------------------------------------------------------- 1 | https://github.com/rhboot/efivar/archive/VERSION.tar.gz 2 | patches/no-add-needed.patch 3 | -------------------------------------------------------------------------------- /extra/efivar/version: -------------------------------------------------------------------------------- 1 | bc65d63ebf8fe6ac8a099ff15ca200986dba1565 1 2 | -------------------------------------------------------------------------------- /extra/exfatprogs/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE \ 7 | --bindir=/usr/bin \ 8 | --sbindir=/usr/bin \ 9 | --datarootdir=/usr/share 10 | 11 | make 12 | make install 13 | -------------------------------------------------------------------------------- /extra/exfatprogs/checksums: -------------------------------------------------------------------------------- 1 | 56d9a49465deafc367d428afc71c8098705a30ee19a3cdf3c5320650b8880742 2 | -------------------------------------------------------------------------------- /extra/exfatprogs/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/exfatprogs/sources: -------------------------------------------------------------------------------- 1 | https://github.com/exfatprogs/exfatprogs/releases/download/VERSION/exfatprogs-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /extra/exfatprogs/version: -------------------------------------------------------------------------------- 1 | 1.2.0 1 2 | -------------------------------------------------------------------------------- /extra/expat/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE \ 7 | --without-xmlwf \ 8 | --without-examples \ 9 | --without-tests \ 10 | --without-docbook 11 | 12 | make 13 | make install 14 | 15 | # Remove documentation (Changelogs, etc). 16 | rm -rf "${1:?}/usr/share" 17 | -------------------------------------------------------------------------------- /extra/expat/checksums: -------------------------------------------------------------------------------- 1 | 6f0e6e01f7b30025fa05c85fdad1e5d0ec7fd35d9f61b22f34998de11969ff67 2 | -------------------------------------------------------------------------------- /extra/expat/sources: -------------------------------------------------------------------------------- 1 | https://github.com/libexpat/libexpat/releases/download/R_MAJOR_MINOR_PATCH/expat-VERSION.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/expat/version: -------------------------------------------------------------------------------- 1 | 2.5.0 1 2 | -------------------------------------------------------------------------------- /extra/f2fs-tools/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CFLAGS="$CFLAGS -L$KISS_ROOT/usr/lib" 4 | 5 | ./autogen.sh 6 | 7 | ./configure \ 8 | --prefix=/usr \ 9 | --build=$KISS_XBUILD_TRIPLE \ 10 | --host=$KISS_XHOST_TRIPLE \ 11 | 12 | make 13 | make install 14 | -------------------------------------------------------------------------------- /extra/f2fs-tools/checksums: -------------------------------------------------------------------------------- 1 | 147d471040b44900283ce2c935f1d35d13d7f40008e7cb8fab2b69f54da01a4f 2 | -------------------------------------------------------------------------------- /extra/f2fs-tools/sources: -------------------------------------------------------------------------------- 1 | https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/f2fs-tools-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/f2fs-tools/version: -------------------------------------------------------------------------------- 1 | 1.15.0 1 2 | -------------------------------------------------------------------------------- /extra/ffmpeg/checksums: -------------------------------------------------------------------------------- 1 | 57be87c22d9b49c112b6d24bc67d42508660e6b718b3db89c44e47e289137082 2 | 259599790eecec1258c8ada41b7dbd64bb7200465b2997aa63edbee60067a7ea 3 | -------------------------------------------------------------------------------- /extra/ffmpeg/depends: -------------------------------------------------------------------------------- 1 | alsa-lib 2 | lame 3 | libass 4 | libdrm 5 | libogg 6 | libvorbis 7 | libvpx 8 | libwebp 9 | linux-headers make 10 | nasm make 11 | openssl 12 | opus 13 | pkgconf make 14 | x264 15 | x265 16 | xvidcore 17 | -------------------------------------------------------------------------------- /extra/ffmpeg/sources: -------------------------------------------------------------------------------- 1 | https://www.ffmpeg.org/releases/ffmpeg-VERSION.tar.xz 2 | patches/ppc64.patch 3 | -------------------------------------------------------------------------------- /extra/ffmpeg/version: -------------------------------------------------------------------------------- 1 | 6.0 2 2 | -------------------------------------------------------------------------------- /extra/file/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | if [ "$KISS_ROOT" ]; then 4 | if [ ! -d /var/db/kiss/installed/file ]; then 5 | echo "Error: to cross-build file, you need to have it on your build machine first." 6 | exit 1 7 | fi 8 | fi 9 | 10 | ./configure \ 11 | --prefix=/usr \ 12 | --build=$KISS_XBUILD_TRIPLE \ 13 | --host=$KISS_XHOST_TRIPLE 14 | 15 | make 16 | make install 17 | -------------------------------------------------------------------------------- /extra/file/checksums: -------------------------------------------------------------------------------- 1 | 3751c7fba8dbc831cb8d7cc8aff21035459b8ce5155ef8b0880a27d028475f3b 2 | -------------------------------------------------------------------------------- /extra/file/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /extra/file/sources: -------------------------------------------------------------------------------- 1 | https://astron.com/pub/file/file-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/file/version: -------------------------------------------------------------------------------- 1 | 5.44 1 2 | -------------------------------------------------------------------------------- /extra/findutils/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CFLAGS="$CFLAGS -static" 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --build="$KISS_XBUILD_TRIPLE" \ 8 | --host="$KISS_XHOST_TRIPLE" 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /extra/findutils/checksums: -------------------------------------------------------------------------------- 1 | a2bfb8c09d436770edc59f50fa483e785b161a3b7b9d547573cb08065fd462fe 2 | -------------------------------------------------------------------------------- /extra/findutils/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/findutils/findutils-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /extra/findutils/version: -------------------------------------------------------------------------------- 1 | 4.9.0 1 2 | -------------------------------------------------------------------------------- /extra/firefox-privacy/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | mkdir -p \ 4 | "$1/usr/lib/firefox/browser/defaults/preferences" \ 5 | "$1/usr/lib/firefox/distribution" 6 | 7 | cp -f vendor.js "$1/usr/lib/firefox/browser/defaults/preferences" 8 | cp -f policies.json "$1/usr/lib/firefox/distribution" 9 | 10 | -------------------------------------------------------------------------------- /extra/firefox-privacy/checksums: -------------------------------------------------------------------------------- 1 | 51b7be0fa7c54ae4d1b212908d2f35a3e69365b1c07509b1b389843992cc3058 2 | 593342d390cb5589a4d0b5dce6d86e61f6e67cafe63672a1cc340370de0e687e 3 | -------------------------------------------------------------------------------- /extra/firefox-privacy/sources: -------------------------------------------------------------------------------- 1 | files/vendor.js 2 | files/policies.json 3 | -------------------------------------------------------------------------------- /extra/firefox-privacy/version: -------------------------------------------------------------------------------- 1 | 1.0 5 2 | -------------------------------------------------------------------------------- /extra/firefox/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cat < meson.config 7 | 8 | meson \ 9 | --prefix=/usr \ 10 | --cross-file="meson.config" \ 11 | . output 12 | 13 | ninja -C output 14 | ninja -C output install 15 | -------------------------------------------------------------------------------- /extra/intel-vaapi-driver/checksums: -------------------------------------------------------------------------------- 1 | 03cd7e16acc94f828b6e7f3087863d8ca06e99ffa3385588005b1984bdd56157 2 | -------------------------------------------------------------------------------- /extra/intel-vaapi-driver/depends: -------------------------------------------------------------------------------- 1 | libdrm 2 | libpciaccess 3 | libva 4 | linux-headers make 5 | meson make 6 | pkgconf make 7 | -------------------------------------------------------------------------------- /extra/intel-vaapi-driver/sources: -------------------------------------------------------------------------------- 1 | https://github.com/intel/intel-vaapi-driver/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/intel-vaapi-driver/version: -------------------------------------------------------------------------------- 1 | 2.4.1 1 2 | -------------------------------------------------------------------------------- /extra/json-c/checksums: -------------------------------------------------------------------------------- 1 | 8e45ac8f96ec7791eaf3bb7ee50e9c2100bbbc87b8d0f1d030c5ba8a0288d96b 2 | 50c1ab3207c6121ed33a51caf4dfb3f22c47e31034e5c44418a16e1003ac626a 3 | -------------------------------------------------------------------------------- /extra/json-c/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | -------------------------------------------------------------------------------- /extra/json-c/sources: -------------------------------------------------------------------------------- 1 | https://s3.amazonaws.com/json-c_releases/releases/json-c-VERSION.tar.gz 2 | patches/clang.patch 3 | -------------------------------------------------------------------------------- /extra/json-c/version: -------------------------------------------------------------------------------- 1 | 0.16 1 2 | -------------------------------------------------------------------------------- /extra/kirc/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make 4 | make -j1 DESTDIR="$1" PREFIX=/usr install 5 | -------------------------------------------------------------------------------- /extra/kirc/checksums: -------------------------------------------------------------------------------- 1 | a45172198873fb34c64150262be4515a7be268a5c00566c79f03a8ea2dd7900e 2 | -------------------------------------------------------------------------------- /extra/kirc/sources: -------------------------------------------------------------------------------- 1 | https://github.com/mcpcpc/kirc/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/kirc/version: -------------------------------------------------------------------------------- 1 | 0.3.2 1 2 | -------------------------------------------------------------------------------- /extra/lame/checksums: -------------------------------------------------------------------------------- 1 | ddfe36cab873794038ae2c1210557ad34857a4b6bdc515785d1da9e175b1da1e 2 | -------------------------------------------------------------------------------- /extra/lame/sources: -------------------------------------------------------------------------------- 1 | https://fossies.org/linux/misc/lame-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/lame/version: -------------------------------------------------------------------------------- 1 | 3.100 2 2 | -------------------------------------------------------------------------------- /extra/libass/checksums: -------------------------------------------------------------------------------- 1 | f0da0bbfba476c16ae3e1cfd862256d30915911f7abaa1b16ce62ee653192784 2 | 1ec2350363076fbaefa1070492d74c10809602028bd7205fdc5b97692418d48c 3 | -------------------------------------------------------------------------------- /extra/libass/depends: -------------------------------------------------------------------------------- 1 | expat 2 | fontconfig 3 | freetype-harfbuzz 4 | nasm make 5 | pkgconf make 6 | -------------------------------------------------------------------------------- /extra/libass/sources: -------------------------------------------------------------------------------- 1 | https://github.com/libass/libass/releases/download/VERSION/libass-VERSION.tar.xz 2 | patches/no-fribidi.patch 3 | -------------------------------------------------------------------------------- /extra/libass/version: -------------------------------------------------------------------------------- 1 | 0.17.1 1 2 | -------------------------------------------------------------------------------- /extra/libelf/checksums: -------------------------------------------------------------------------------- 1 | 39bd8f1a338e2b7cd4abc3ff11a0eddc6e690f69578a57478d8179b4148708c8 2 | bc1af286b7ee3390f7cd5828437bce5ff0941ffb191f291a5a3d59fc6c3e52d3 3 | -------------------------------------------------------------------------------- /extra/libelf/depends: -------------------------------------------------------------------------------- 1 | pkgconf make 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/libelf/sources: -------------------------------------------------------------------------------- 1 | https://sourceware.org/elfutils/ftp/VERSION/elfutils-VERSION.tar.bz2 2 | patches/musl.patch 3 | -------------------------------------------------------------------------------- /extra/libelf/version: -------------------------------------------------------------------------------- 1 | 0.189 1 2 | -------------------------------------------------------------------------------- /extra/libepoxy/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson setup \ 6 | -Dprefix=/usr \ 7 | --cross-file="meson.config" \ 8 | -Degl=yes \ 9 | -Dtests=false \ 10 | -Dglx=no \ 11 | -Dx11=false \ 12 | output 13 | 14 | ninja -C output 15 | meson install -C output 16 | -------------------------------------------------------------------------------- /extra/libepoxy/checksums: -------------------------------------------------------------------------------- 1 | a7ced37f4102b745ac86d6a70a9da399cc139ff168ba6b8002b4d8d43c900c15 2 | -------------------------------------------------------------------------------- /extra/libepoxy/depends: -------------------------------------------------------------------------------- 1 | libglvnd 2 | mesa make 3 | meson make 4 | -------------------------------------------------------------------------------- /extra/libepoxy/sources: -------------------------------------------------------------------------------- 1 | https://github.com/anholt/libepoxy/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libepoxy/version: -------------------------------------------------------------------------------- 1 | 1.5.10 2 2 | -------------------------------------------------------------------------------- /extra/liberation-fonts/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | mkdir -p "$1/usr/share/fonts/TTF" 4 | cp ./*.ttf "$1/usr/share/fonts/TTF" 5 | -------------------------------------------------------------------------------- /extra/liberation-fonts/checksums: -------------------------------------------------------------------------------- 1 | 7191c669bf38899f73a2094ed00f7b800553364f90e2637010a69c0e268f25d0 2 | -------------------------------------------------------------------------------- /extra/liberation-fonts/sources: -------------------------------------------------------------------------------- 1 | https://github.com/liberationfonts/liberation-fonts/files/7261482/liberation-fonts-ttf-2.1.5.tar.gz 2 | -------------------------------------------------------------------------------- /extra/liberation-fonts/version: -------------------------------------------------------------------------------- 1 | 2.1.5 1 2 | -------------------------------------------------------------------------------- /extra/libevent/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE \ 7 | --disable-static 8 | 9 | make 10 | make install 11 | -------------------------------------------------------------------------------- /extra/libevent/checksums: -------------------------------------------------------------------------------- 1 | 92e6de1be9ec176428fd2367677e61ceffc2ee1cb119035037a27d346b0403bb libevent-2.1.12-stable.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libevent/sources: -------------------------------------------------------------------------------- 1 | https://github.com/libevent/libevent/releases/download/release-2.1.12-stable/libevent-2.1.12-stable.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libevent/version: -------------------------------------------------------------------------------- 1 | 2.1.12 1 2 | -------------------------------------------------------------------------------- /extra/libexecinfo/patches/make.patch: -------------------------------------------------------------------------------- 1 | --- a/Makefile 2 | +++ a/Makefile 3 | @@ -26,7 +26,7 @@ 4 | # 5 | # Linux Makefile by Matt Smith , 2011/01/04 6 | 7 | -CC=cc 8 | +CC ?= cc 9 | AR=ar 10 | EXECINFO_CFLAGS=$(CFLAGS) -std=gnu99 -c 11 | EXECINFO_LDFLAGS=$(LDFLAGS) 12 | -------------------------------------------------------------------------------- /extra/libexecinfo/sources: -------------------------------------------------------------------------------- 1 | http://distcache.freebsd.org/local-distfiles/itetcu/libexecinfo-1.1.tar.bz2 2 | patches/01-execinfo.patch 3 | patches/02-makefile.patch 4 | patches/03-define-gnu-source.patch 5 | patches/libexecinfo_pc.patch 6 | patches/make.patch 7 | -------------------------------------------------------------------------------- /extra/libexecinfo/version: -------------------------------------------------------------------------------- 1 | 1.1 1 2 | -------------------------------------------------------------------------------- /extra/libffi/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE \ 7 | --disable-exec-static-tramp \ 8 | --with-pic 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /extra/libffi/checksums: -------------------------------------------------------------------------------- 1 | d66c56ad259a82cf2a9dfc408b32bf5da52371500b84745f7fb8b645712df676 2 | -------------------------------------------------------------------------------- /extra/libffi/sources: -------------------------------------------------------------------------------- 1 | https://github.com/libffi/libffi/releases/download/vVERSION/libffi-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libffi/version: -------------------------------------------------------------------------------- 1 | 3.4.4 1 2 | -------------------------------------------------------------------------------- /extra/libglvnd/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --cross-file="meson.config" \ 8 | -Dgles1=true \ 9 | -Dgles2=true \ 10 | -Dtls=false \ 11 | -Dasm=disabled \ 12 | -Dglx=disabled \ 13 | -Dentrypoint-patching=enabled \ 14 | . output 15 | 16 | ninja -C output 17 | ninja -C output install 18 | -------------------------------------------------------------------------------- /extra/libglvnd/checksums: -------------------------------------------------------------------------------- 1 | efc756ffd24b24059e1c53677a9d57b4b237b00a01c54a6f1611e1e51661d70c 2 | -------------------------------------------------------------------------------- /extra/libglvnd/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/02ad405c2776243e330b3f2a4f0c4b30e06b7fdc/extra/libglvnd/depends -------------------------------------------------------------------------------- /extra/libglvnd/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/vVERSION/libglvnd-vVERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libglvnd/version: -------------------------------------------------------------------------------- 1 | 1.6.0 1 2 | -------------------------------------------------------------------------------- /extra/libgpg-error/checksums: -------------------------------------------------------------------------------- 1 | b7e11a64246bbe5ef37748de43b245abd72cfcd53c9ae5e7fc5ca59f1c81268d 2 | -------------------------------------------------------------------------------- /extra/libgpg-error/sources: -------------------------------------------------------------------------------- 1 | https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-VERSION.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/libgpg-error/version: -------------------------------------------------------------------------------- 1 | 1.46 1 2 | -------------------------------------------------------------------------------- /extra/libjpeg-turbo/checksums: -------------------------------------------------------------------------------- 1 | 61846251941e5791005fb7face196eec24541fce04f12570c308557529e92c75 2 | 65b93fadb0074502c3e0d17a2d57609b5cbcfddf29112450410374853278b4a6 3 | -------------------------------------------------------------------------------- /extra/libjpeg-turbo/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | nasm make 3 | -------------------------------------------------------------------------------- /extra/libjpeg-turbo/sources: -------------------------------------------------------------------------------- 1 | https://github.com/libjpeg-turbo/libjpeg-turbo/archive/VERSION.tar.gz 2 | patches/no-docs.patch 3 | -------------------------------------------------------------------------------- /extra/libjpeg-turbo/version: -------------------------------------------------------------------------------- 1 | 2.1.5.1 1 2 | -------------------------------------------------------------------------------- /extra/libnvme/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | export LDFLAGS="$LDFLAGS -Wl,--undefined-version" 6 | 7 | meson setup \ 8 | --prefix=/usr \ 9 | --cross-file="meson.config" \ 10 | -Dversion-tag="$2" \ 11 | -Dlibdbus=disabled \ 12 | . output 13 | 14 | ninja -C output 15 | ninja -C output install 16 | -------------------------------------------------------------------------------- /extra/libnvme/checksums: -------------------------------------------------------------------------------- 1 | 259b8bc12ef81431222e7d9eb287b3c2051e316bab754bd4fa39f84401e5836d 2 | -------------------------------------------------------------------------------- /extra/libnvme/depends: -------------------------------------------------------------------------------- 1 | json-c 2 | -------------------------------------------------------------------------------- /extra/libnvme/sources: -------------------------------------------------------------------------------- 1 | https://github.com/linux-nvme/libnvme/archive/refs/tags/vVERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libnvme/version: -------------------------------------------------------------------------------- 1 | 1.3 1 2 | -------------------------------------------------------------------------------- /extra/libogg/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE 7 | 8 | make -C src 9 | make -C include install 10 | make -C src install 11 | 12 | make install-m4dataDATA install-pkgconfigDATA 13 | -------------------------------------------------------------------------------- /extra/libogg/checksums: -------------------------------------------------------------------------------- 1 | c4d91be36fc8e54deae7575241e03f4211eb102afb3fc0775fbbc1b740016705 2 | -------------------------------------------------------------------------------- /extra/libogg/sources: -------------------------------------------------------------------------------- 1 | https://github.com/xiph/ogg/releases/download/vVERSION/libogg-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /extra/libogg/version: -------------------------------------------------------------------------------- 1 | 1.3.5 1 2 | -------------------------------------------------------------------------------- /extra/libpng/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | patch -p1 < apng.patch 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --build=$KISS_XBUILD_TRIPLE \ 8 | --host=$KISS_XHOST_TRIPLE 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /extra/libpng/checksums: -------------------------------------------------------------------------------- 1 | a00e9d2f2f664186e4202db9299397f851aea71b36a35e74910b8820e380d441 2 | 18b71dcd329af6ddb483cb6d145535861e04918f7eb95e8051545f0bbce7d517 3 | -------------------------------------------------------------------------------- /extra/libpng/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /extra/libpng/sources: -------------------------------------------------------------------------------- 1 | https://github.com/glennrp/libpng/archive/vVERSION.tar.gz 2 | patches/apng.patch 3 | -------------------------------------------------------------------------------- /extra/libpng/version: -------------------------------------------------------------------------------- 1 | 1.6.39 1 2 | -------------------------------------------------------------------------------- /extra/libretls/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE 7 | 8 | make 9 | make install 10 | -------------------------------------------------------------------------------- /extra/libretls/checksums: -------------------------------------------------------------------------------- 1 | 9aa5d3a9133932c362075259b0b17bb0c89741fa1b2535136df2ded7a0c13392 2 | -------------------------------------------------------------------------------- /extra/libretls/depends: -------------------------------------------------------------------------------- 1 | openssl -------------------------------------------------------------------------------- /extra/libretls/sources: -------------------------------------------------------------------------------- 1 | https://causal.agency/libretls/libretls-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libretls/version: -------------------------------------------------------------------------------- 1 | 3.7.0 1 2 | -------------------------------------------------------------------------------- /extra/libslirp/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --cross-file="meson.config" \ 8 | . build 9 | 10 | ninja -C build 11 | ninja -C build install 12 | -------------------------------------------------------------------------------- /extra/libslirp/checksums: -------------------------------------------------------------------------------- 1 | 9398f0ec5a581d4e1cd6856b88ae83927e458d643788c3391a39e61b75db3d3b 2 | -------------------------------------------------------------------------------- /extra/libslirp/depends: -------------------------------------------------------------------------------- 1 | glib 2 | -------------------------------------------------------------------------------- /extra/libslirp/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/slirp/libslirp/-/archive/vVERSION/libslirp-vVERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libslirp/version: -------------------------------------------------------------------------------- 1 | 4.7.0 1 2 | -------------------------------------------------------------------------------- /extra/libtheora/checksums: -------------------------------------------------------------------------------- 1 | 40952956c47811928d1e7922cda3bc1f427eb75680c3c37249c91e949054916b 2 | a435a75416af642f567e0c90818d59ee186f652d3cde5db619de11b827b612e1 3 | cc0d9d38c06a7f72db354d38e86237e6a9a05616c0a57ada6cf489ac26ae3ffa 4 | 325caa596fa7aee6495bc416af6ed7d9e36b23aa2e0f6fba04cbb07838b37a27 5 | -------------------------------------------------------------------------------- /extra/libtheora/depends: -------------------------------------------------------------------------------- 1 | libogg 2 | -------------------------------------------------------------------------------- /extra/libtheora/sources: -------------------------------------------------------------------------------- 1 | https://downloads.xiph.org/releases/theora/libtheora-VERSION.tar.gz 2 | patches/libtheora-1.1.1-libpng16.patch 3 | patches/fix-theoraenc.patch 4 | files/config.sub 5 | -------------------------------------------------------------------------------- /extra/libtheora/version: -------------------------------------------------------------------------------- 1 | 1.1.1 2 2 | -------------------------------------------------------------------------------- /extra/libtirpc/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export LDFLAGS="$LDFLAGS -Wl,--undefined-version" 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --build=$KISS_XBUILD_TRIPLE \ 8 | --host=$KISS_XHOST_TRIPLE \ 9 | --sysconfdir=/etc \ 10 | --enable-static \ 11 | --disable-gssapi 12 | 13 | make 14 | make install 15 | -------------------------------------------------------------------------------- /extra/libtirpc/checksums: -------------------------------------------------------------------------------- 1 | 6474e98851d9f6f33871957ddee9714fdcd9d8a5ee9abb5a98d63ea2e60e12f3 2 | -------------------------------------------------------------------------------- /extra/libtirpc/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/libtirpc/sources: -------------------------------------------------------------------------------- 1 | https://downloads.sourceforge.net/libtirpc/libtirpc-VERSION.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/libtirpc/version: -------------------------------------------------------------------------------- 1 | 1.3.3 1 2 | -------------------------------------------------------------------------------- /extra/libtool/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE 7 | 8 | make 9 | make install 10 | -------------------------------------------------------------------------------- /extra/libtool/checksums: -------------------------------------------------------------------------------- 1 | 7c87a8c2c8c0fc9cd5019e402bed4292462d00a718a7cd5f11218153bf28b26f 2 | -------------------------------------------------------------------------------- /extra/libtool/depends: -------------------------------------------------------------------------------- 1 | m4 2 | perl 3 | -------------------------------------------------------------------------------- /extra/libtool/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.xz 2 | -------------------------------------------------------------------------------- /extra/libtool/version: -------------------------------------------------------------------------------- 1 | 2.4.7 1 2 | -------------------------------------------------------------------------------- /extra/libudev-zero/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -ef 2 | 3 | make PREFIX=/usr 4 | make PREFIX=/usr install 5 | 6 | mkdir -p "$1/usr/bin" 7 | 8 | # Intentional, globbing disabled. 9 | # shellcheck disable=2086 10 | clang -static $LDFLAGS $CFLAGS $CPPFLAGS \ 11 | -o "$1/usr/bin/libudev-zero-helper" contrib/helper.c 12 | 13 | -------------------------------------------------------------------------------- /extra/libudev-zero/checksums: -------------------------------------------------------------------------------- 1 | c4cf149ea96295c1e6e86038d10c725344c751982ed4a790b06c76776923e0ea 2 | -------------------------------------------------------------------------------- /extra/libudev-zero/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/libudev-zero/sources: -------------------------------------------------------------------------------- 1 | https://github.com/illiliti/libudev-zero/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libudev-zero/version: -------------------------------------------------------------------------------- 1 | 1.0.1 1 2 | -------------------------------------------------------------------------------- /extra/libva-utils/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --cross-file="meson.config" \ 8 | --sysconfdir=/etc \ 9 | --mandir=/usr/share/man \ 10 | . output 11 | 12 | ninja -C output 13 | ninja -C output install 14 | -------------------------------------------------------------------------------- /extra/libva-utils/checksums: -------------------------------------------------------------------------------- 1 | 6ea5993c3eba230a979fa9d35b4cad8df06d4474a773dc0918033bf50353f966 2 | -------------------------------------------------------------------------------- /extra/libva-utils/depends: -------------------------------------------------------------------------------- 1 | libva 2 | mesa 3 | pkgconf make 4 | wayland 5 | wayland-protocols make 6 | -------------------------------------------------------------------------------- /extra/libva-utils/sources: -------------------------------------------------------------------------------- 1 | https://github.com/intel/libva-utils/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libva-utils/version: -------------------------------------------------------------------------------- 1 | 2.17.1 1 2 | -------------------------------------------------------------------------------- /extra/libva-v4l2-request/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --cross-file="meson.config" \ 8 | --buildtype=release \ 9 | . output 10 | 11 | ninja -C output 12 | ninja -C output install 13 | -------------------------------------------------------------------------------- /extra/libva-v4l2-request/depends: -------------------------------------------------------------------------------- 1 | libva 2 | -------------------------------------------------------------------------------- /extra/libva-v4l2-request/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/kwizart/libva-v4l2-request.git#3549d7f6d7409183bf9156510118f393fdda69b1 2 | -------------------------------------------------------------------------------- /extra/libva-v4l2-request/version: -------------------------------------------------------------------------------- 1 | git-20190517 1 2 | -------------------------------------------------------------------------------- /extra/libva/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | patch -p1 < undef.patch 4 | 5 | kiss-meson-config > meson.config 6 | 7 | meson \ 8 | --prefix=/usr \ 9 | --cross-file="meson.config" \ 10 | --sysconfdir=/etc \ 11 | --mandir=/usr/share/man \ 12 | -Dwith_wayland=yes \ 13 | -Dwith_x11=no \ 14 | -Dwith_glx=no \ 15 | . output 16 | 17 | ninja -C output 18 | ninja -C output install 19 | -------------------------------------------------------------------------------- /extra/libva/checksums: -------------------------------------------------------------------------------- 1 | 8940541980ef998a36cd8f6ad905e81838ea4ddf56dc479ed2bebd12711e6001 2 | bfdd95da5a2ea84ba86d9cf0711fed05a601091345513185548ecade1135e35d 3 | -------------------------------------------------------------------------------- /extra/libva/depends: -------------------------------------------------------------------------------- 1 | libdrm 2 | linux-headers make 3 | meson make 4 | pkgconf make 5 | wayland 6 | wayland make 7 | -------------------------------------------------------------------------------- /extra/libva/sources: -------------------------------------------------------------------------------- 1 | https://github.com/intel/libva/archive/VERSION.tar.gz 2 | patches/undef.patch 3 | -------------------------------------------------------------------------------- /extra/libva/version: -------------------------------------------------------------------------------- 1 | 2.17.0 1 2 | -------------------------------------------------------------------------------- /extra/libvorbis/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CFLAGS="$CFLAGS -L$KISS_ROOT/usr/lib" 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --build=$KISS_XBUILD_TRIPLE \ 8 | --host=$KISS_XHOST_TRIPLE 9 | 10 | make 11 | 12 | make -C lib install 13 | make -C include install 14 | 15 | make install-m4dataDATA install-pkgconfigDATA 16 | -------------------------------------------------------------------------------- /extra/libvorbis/checksums: -------------------------------------------------------------------------------- 1 | 0e982409a9c3fc82ee06e08205b1355e5c6aa4c36bca58146ef399621b0ce5ab 2 | -------------------------------------------------------------------------------- /extra/libvorbis/depends: -------------------------------------------------------------------------------- 1 | libogg 2 | -------------------------------------------------------------------------------- /extra/libvorbis/sources: -------------------------------------------------------------------------------- 1 | https://ftp.osuosl.org/pub/xiph/releases/vorbis/libvorbis-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libvorbis/version: -------------------------------------------------------------------------------- 1 | 1.3.7 1 2 | -------------------------------------------------------------------------------- /extra/libvpx/checksums: -------------------------------------------------------------------------------- 1 | cb2a393c9c1fae7aba76b950bb0ad393ba105409fe1a147ccd61b0aaa1501066 2 | 91558d2ae523ee2455dd9cba83620cdd0b17c61a3d823fc1261fcae7a18aa1e6 3 | 3f03e875d9b9ae9b2accd3c03cf8a427c03dfacbd11ba0cc8afa3b3718ebb47f 4 | 77716ffb6d08322a3f300b9adad302641836af6e923854eba040a95e0766fa70 5 | 0de059e9fed4e4f5d00dc9c52fef8954c12029ed9cfcd7948df764ad28f167e5 6 | -------------------------------------------------------------------------------- /extra/libvpx/depends: -------------------------------------------------------------------------------- 1 | nasm make 2 | -------------------------------------------------------------------------------- /extra/libvpx/sources: -------------------------------------------------------------------------------- 1 | https://github.com/webmproject/libvpx/archive/vVERSION.tar.gz 2 | files/vp9_rtcd.h 3 | files/vp8_rtcd.h 4 | files/vpx_scale_rtcd.h 5 | files/vpx_dsp_rtcd.h 6 | -------------------------------------------------------------------------------- /extra/libvpx/version: -------------------------------------------------------------------------------- 1 | 1.13.0 1 2 | -------------------------------------------------------------------------------- /extra/libwebp/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export LDFLAGS="$LDFLAGS -L$KISS_ROOT/usr/lib" 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --build=$KISS_XBUILD_TRIPLE \ 8 | --host=$KISS_XHOST_TRIPLE \ 9 | --disable-static \ 10 | --disable-tiff \ 11 | --enable-libwebpmux \ 12 | --enable-libwebpdemux \ 13 | --enable-libwebpdecoder 14 | 15 | make 16 | make install 17 | -------------------------------------------------------------------------------- /extra/libwebp/checksums: -------------------------------------------------------------------------------- 1 | 64ac4614db292ae8c5aa26de0295bf1623dbb3985054cb656c55e67431def17c 2 | -------------------------------------------------------------------------------- /extra/libwebp/depends: -------------------------------------------------------------------------------- 1 | libjpeg-turbo 2 | libpng 3 | -------------------------------------------------------------------------------- /extra/libwebp/sources: -------------------------------------------------------------------------------- 1 | http://downloads.webmproject.org/releases/webp/libwebp-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libwebp/version: -------------------------------------------------------------------------------- 1 | 1.3.0 1 2 | -------------------------------------------------------------------------------- /extra/libxml2/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export LDFLAGS="$LDFLAGS -Wl,--undefined-version" 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --build=$KISS_XBUILD_TRIPLE \ 8 | --host=$KISS_XHOST_TRIPLE \ 9 | --with-threads \ 10 | --with-history \ 11 | --without-python \ 12 | --without-icu 13 | 14 | make 15 | make install 16 | -------------------------------------------------------------------------------- /extra/libxml2/checksums: -------------------------------------------------------------------------------- 1 | c051b706cf9d8f216f89311af677e84d9cbc51751772eb0c8e21318bbd7fd9c7 2 | -------------------------------------------------------------------------------- /extra/libxml2/depends: -------------------------------------------------------------------------------- 1 | xz 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/libxml2/sources: -------------------------------------------------------------------------------- 1 | https://fossies.org/linux/www/libxml2-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libxml2/version: -------------------------------------------------------------------------------- 1 | 2.10.3 1 2 | -------------------------------------------------------------------------------- /extra/libyaml/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | 4 | ./configure \ 5 | --prefix=/usr \ 6 | --build=$KISS_XBUILD_TRIPLE \ 7 | --host=$KISS_XHOST_TRIPLE 8 | 9 | make 10 | make DESTDIR="$1" install 11 | -------------------------------------------------------------------------------- /extra/libyaml/checksums: -------------------------------------------------------------------------------- 1 | c642ae9b75fee120b2d96c712538bd2cf283228d2337df2cf2988e3c02678ef4 2 | -------------------------------------------------------------------------------- /extra/libyaml/sources: -------------------------------------------------------------------------------- 1 | https://github.com/yaml/libyaml/releases/download/VERSION/yaml-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/libyaml/version: -------------------------------------------------------------------------------- 1 | 0.2.5 1 2 | -------------------------------------------------------------------------------- /extra/links2/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CFLAGS="$CFLAGS -Wno-implicit-int" 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --build=$KISS_XBUILD_TRIPLE \ 8 | --host=$KISS_XHOST_TRIPLE \ 9 | --disable-graphics 10 | 11 | make 12 | make DESTDIR="$1" install 13 | -------------------------------------------------------------------------------- /extra/links2/checksums: -------------------------------------------------------------------------------- 1 | 2fd5499b13dee59457c132c167b8495c40deda75389489c6cccb683193f454b4 2 | -------------------------------------------------------------------------------- /extra/links2/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | bzip2 3 | -------------------------------------------------------------------------------- /extra/links2/sources: -------------------------------------------------------------------------------- 1 | http://links.twibright.com/download/links-VERSION.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/links2/version: -------------------------------------------------------------------------------- 1 | 2.28 1 2 | -------------------------------------------------------------------------------- /extra/lzip/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE \ 7 | CXX="$CXX" \ 8 | CXXFLAGS="$CXXFLAGS" \ 9 | LDFLAGS="$LDFLAGS" 10 | 11 | make 12 | make install 13 | -------------------------------------------------------------------------------- /extra/lzip/checksums: -------------------------------------------------------------------------------- 1 | 4792c047ddf15ef29d55ba8e68a1a21e0cb7692d87ecdf7204419864582f280d 2 | -------------------------------------------------------------------------------- /extra/lzip/sources: -------------------------------------------------------------------------------- 1 | https://download.savannah.gnu.org/releases/lzip/lzip-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/lzip/version: -------------------------------------------------------------------------------- 1 | 1.23 1 2 | -------------------------------------------------------------------------------- /extra/lzo/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE 7 | 8 | make install 9 | -------------------------------------------------------------------------------- /extra/lzo/checksums: -------------------------------------------------------------------------------- 1 | c0f892943208266f9b6543b3ae308fab6284c5c90e627931446fb49b4221a072 lzo-2.10.tar.gz 2 | -------------------------------------------------------------------------------- /extra/lzo/sources: -------------------------------------------------------------------------------- 1 | http://www.oberhumer.com/opensource/lzo/download/lzo-2.10.tar.gz 2 | -------------------------------------------------------------------------------- /extra/lzo/version: -------------------------------------------------------------------------------- 1 | 2.10 1 2 | -------------------------------------------------------------------------------- /extra/man-pages/checksums: -------------------------------------------------------------------------------- 1 | 5f7f289d30b296b78116a08e7703df9375aa846b332b57dca47ddcbb7809fbbd 2 | ce67bb25b5048b20dad772e405a83f4bc70faf051afa289361c81f9660318bc3 3 | -------------------------------------------------------------------------------- /extra/man-pages/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | makewhatis /usr/share/man 4 | -------------------------------------------------------------------------------- /extra/man-pages/sources: -------------------------------------------------------------------------------- 1 | https://mirrors.edge.kernel.org/pub/linux/docs/man-pages/man-pages-VERSION.tar.xz 2 | https://mirrors.edge.kernel.org/pub/linux/docs/man-pages/man-pages-posix/man-pages-posix-2017-a.tar.xz posix 3 | -------------------------------------------------------------------------------- /extra/man-pages/version: -------------------------------------------------------------------------------- 1 | 6.03 1 2 | -------------------------------------------------------------------------------- /extra/mandoc/checksums: -------------------------------------------------------------------------------- 1 | 8bf0d570f01e70a6e124884088870cbed7537f36328d512909eb10cd53179d9c 2 | 1fef8afb447199512ab8bc000c85c24ee77649af850cd71f5023d5d7787e0cd7 3 | -------------------------------------------------------------------------------- /extra/mandoc/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /extra/mandoc/sources: -------------------------------------------------------------------------------- 1 | https://mandoc.bsd.lv/snapshots/mandoc-VERSION.tar.gz 2 | patches/mandoc-no-warn.patch 3 | -------------------------------------------------------------------------------- /extra/mandoc/version: -------------------------------------------------------------------------------- 1 | 1.14.6 1 2 | -------------------------------------------------------------------------------- /extra/mdevd/checksums: -------------------------------------------------------------------------------- 1 | 301716caa43d2139688a02183220b4ba168c4f2227fdb7241d8dfcce7b2ec18e 2 | f28498912c9ca997e2cf16ec745ac904a29f3c1f9c5e0a5821a37390ca76367a 3 | 917bb58ccf50bc0193779c750b04a611b4843ff92cbce71293a8bbe69261f15c 4 | e543990de348f29eb39b6459c6a22c363ab909ebaf5fdcce02b626218f7da5c0 5 | -------------------------------------------------------------------------------- /extra/mdevd/depends: -------------------------------------------------------------------------------- 1 | skalibs 2 | -------------------------------------------------------------------------------- /extra/mdevd/files/mdevd.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Null the legacy hotplugger as the service will take over from here. 4 | printf '\n' 2>/dev/null > /proc/sys/kernel/hotplug 5 | 6 | exec mdevd -f /etc/mdevd.conf -O 4 2>&1 7 | -------------------------------------------------------------------------------- /extra/mdevd/patches/cross.patch: -------------------------------------------------------------------------------- 1 | diff --git a/configure b/configure 2 | index c9b93bb..f41babf 100755 3 | --- a/configure 4 | +++ b/configure 5 | @@ -271,7 +271,7 @@ fi 6 | 7 | # Find a C compiler to use 8 | if test -n "$target" && test x${build} != x${target} ; then 9 | - cross=${target}- 10 | + cross= 11 | else 12 | cross= 13 | fi 14 | -------------------------------------------------------------------------------- /extra/mdevd/sources: -------------------------------------------------------------------------------- 1 | https://github.com/skarnet/mdevd/archive/refs/tags/vVERSION.tar.gz 2 | files/mdevd.conf 3 | files/mdevd.run 4 | patches/cross.patch 5 | -------------------------------------------------------------------------------- /extra/mdevd/version: -------------------------------------------------------------------------------- 1 | 0.1.6.2 2 2 | -------------------------------------------------------------------------------- /extra/mesa/checksums: -------------------------------------------------------------------------------- 1 | 01f3cff3763f09e0adabcb8011e4aebc6ad48f6a4dd4bae904fe918707d253e4 2 | b2a283f42bf9c4bbde22de2fd712976040efad82cab3d047295b572b7f9ed17e 3 | -------------------------------------------------------------------------------- /extra/mesa/depends: -------------------------------------------------------------------------------- 1 | bison make 2 | expat 3 | flex make 4 | libdrm 5 | libelf 6 | libglvnd 7 | linux-headers make 8 | llvm 9 | llvm-runtimes 10 | m4 make 11 | meson make 12 | pkgconf make 13 | python make 14 | wayland 15 | wayland-protocols make 16 | zlib 17 | -------------------------------------------------------------------------------- /extra/mesa/sources: -------------------------------------------------------------------------------- 1 | https://archive.mesa3d.org/mesa-VERSION.tar.xz 2 | patches/wayland.patch 3 | -------------------------------------------------------------------------------- /extra/mesa/version: -------------------------------------------------------------------------------- 1 | 23.0.0 1 2 | -------------------------------------------------------------------------------- /extra/meson/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | python setup.py build 4 | python setup.py install \ 5 | --root="$1" \ 6 | --optimize=1 \ 7 | --skip-build 8 | 9 | # Install files used for cross building 10 | mkdir -p "$1/usr/share/meson" 11 | install -Dm755 kiss-meson-config "$1/usr/bin/kiss-meson-config" 12 | -------------------------------------------------------------------------------- /extra/meson/checksums: -------------------------------------------------------------------------------- 1 | 4ab3a5c0060dc22bdefb04507efc6c38acb910e91bcd467a38e1fa211e5a6cfe 2 | 14c5df8ade520879cf3c6fb109ea199749f1bc9eee6daebf28834b40dec50a82 3 | -------------------------------------------------------------------------------- /extra/meson/depends: -------------------------------------------------------------------------------- 1 | python 2 | samurai 3 | -------------------------------------------------------------------------------- /extra/meson/sources: -------------------------------------------------------------------------------- 1 | https://github.com/mesonbuild/meson/archive/VERSION.tar.gz 2 | files/kiss-meson-config 3 | -------------------------------------------------------------------------------- /extra/meson/version: -------------------------------------------------------------------------------- 1 | 1.0.1 1 2 | -------------------------------------------------------------------------------- /extra/mpv/checksums: -------------------------------------------------------------------------------- 1 | 841648ed90b13df1dac9ef2dc704fe1fe1cba66f7f0e92ff97f8b15d8d04d967 2 | 686577d2e4c32380bb50cbb22f575ed742d58168cee37e99117a854bcd88f125 3 | -------------------------------------------------------------------------------- /extra/mpv/depends: -------------------------------------------------------------------------------- 1 | alsa-lib 2 | ffmpeg 3 | freetype-harfbuzz 4 | libass 5 | libxkbcommon 6 | linux-headers make 7 | mesa 8 | pkgconf make 9 | python make 10 | wayland 11 | wayland-protocols make 12 | -------------------------------------------------------------------------------- /extra/mpv/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/mpv-player/mpv 2 | https://waf.io/waf-2.0.22.tar.bz2 waf 3 | https://files.pythonhosted.org/packages/source/d/docutils/docutils-0.17.1.tar.gz docutils 4 | -------------------------------------------------------------------------------- /extra/mpv/version: -------------------------------------------------------------------------------- 1 | git 2 2 | -------------------------------------------------------------------------------- /extra/nano/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --build=$KISS_XBUILD_TRIPLE \ 7 | --host=$KISS_XHOST_TRIPLE 8 | 9 | make 10 | make install 11 | -------------------------------------------------------------------------------- /extra/nano/checksums: -------------------------------------------------------------------------------- 1 | b4edaab0a037b5760484907c674e980053896f33759e43f834a212145fd085f1 2 | -------------------------------------------------------------------------------- /extra/nano/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | ncurses 3 | zlib 4 | -------------------------------------------------------------------------------- /extra/nano/sources: -------------------------------------------------------------------------------- 1 | https://www.nano-editor.org/dist/v7/nano-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/nano/version: -------------------------------------------------------------------------------- 1 | 7.2 1 2 | -------------------------------------------------------------------------------- /extra/nasm/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE 7 | 8 | make 9 | make install 10 | -------------------------------------------------------------------------------- /extra/nasm/checksums: -------------------------------------------------------------------------------- 1 | c77745f4802375efeee2ec5c0ad6b7f037ea9c87c92b149a9637ff099f162558 2 | -------------------------------------------------------------------------------- /extra/nasm/sources: -------------------------------------------------------------------------------- 1 | https://www.nasm.us/pub/nasm/releasebuilds/VERSION/nasm-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /extra/nasm/version: -------------------------------------------------------------------------------- 1 | 2.16.01 1 2 | -------------------------------------------------------------------------------- /extra/ncurses/checksums: -------------------------------------------------------------------------------- 1 | 6931283d9ac87c5073f30b6290c4c75f21632bb4fc3603ac8100812bed248159 2 | -------------------------------------------------------------------------------- /extra/ncurses/sources: -------------------------------------------------------------------------------- 1 | https://invisible-mirror.net/archives/ncurses/ncurses-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/ncurses/version: -------------------------------------------------------------------------------- 1 | 6.4 1 2 | -------------------------------------------------------------------------------- /extra/nettle/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE \ 7 | --disable-assembler \ 8 | --enable-shared \ 9 | --enable-static \ 10 | --enable-mini-gmp \ 11 | --disable-documentation 12 | 13 | make 14 | make install 15 | -------------------------------------------------------------------------------- /extra/nettle/checksums: -------------------------------------------------------------------------------- 1 | 364f3e2b77cd7dcde83fd7c45219c834e54b0c75e428b6f894a23d12dd41cbfe 2 | -------------------------------------------------------------------------------- /extra/nettle/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/nettle/nettle-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/nettle/version: -------------------------------------------------------------------------------- 1 | 3.8.1 1 2 | -------------------------------------------------------------------------------- /extra/nmap/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE \ 7 | --without-ndiff \ 8 | --with-openssl=openssl \ 9 | --without-zenmap 10 | 11 | make 12 | make DESTDIR="$1" install 13 | -------------------------------------------------------------------------------- /extra/nmap/checksums: -------------------------------------------------------------------------------- 1 | 55bcfe4793e25acc96ba4274d8c4228db550b8e8efd72004b38ec55a2dd16651 2 | -------------------------------------------------------------------------------- /extra/nmap/depends: -------------------------------------------------------------------------------- 1 | openssl 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/nmap/sources: -------------------------------------------------------------------------------- 1 | https://nmap.org/dist/nmap-VERSION.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/nmap/version: -------------------------------------------------------------------------------- 1 | 7.93 1 2 | -------------------------------------------------------------------------------- /extra/nodejs/checksums: -------------------------------------------------------------------------------- 1 | 511847f724ea405f85e25803cbcf8b131b14cd06b2d7046698bd2760c404bfc3 2 | -------------------------------------------------------------------------------- /extra/nodejs/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | openssl 3 | python make 4 | samurai make 5 | zlib 6 | -------------------------------------------------------------------------------- /extra/nodejs/sources: -------------------------------------------------------------------------------- 1 | https://nodejs.org/download/release/vVERSION/node-vVERSION.tar.xz 2 | -------------------------------------------------------------------------------- /extra/nodejs/version: -------------------------------------------------------------------------------- 1 | 19.7.0 1 2 | -------------------------------------------------------------------------------- /extra/nspr/checksums: -------------------------------------------------------------------------------- 1 | 7ea3297ea5969b5d25a5dd8d47f2443cda88e9ee746301f6e1e1426f8a6abc8f 2 | -------------------------------------------------------------------------------- /extra/nspr/sources: -------------------------------------------------------------------------------- 1 | https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/vVERSION/src/nspr-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/nspr/version: -------------------------------------------------------------------------------- 1 | 4.35 1 2 | -------------------------------------------------------------------------------- /extra/nss/checksums: -------------------------------------------------------------------------------- 1 | 27d243edf87d1cf1bb9c861f03d387e0e9230ce5017f4308c941f558b54b3496 2 | b80a88c9daeab628242c2098b7c0ffc2ff5e1ffdbe99f5ba1f8702953726cbaf 3 | e934b79be87af29001e441dd88dd104ce32f6a4ef7a8c16be2e3ca39212a0e99 4 | 84c5cb9210b5effd45ac233f6c08d3e0296ec1d3a3cb6570f5c0f3f6fb3143c0 5 | 5f53fd58c9b05fb8323e1024dbc414858f728e5b086838b94df8487542156197 6 | -------------------------------------------------------------------------------- /extra/nss/depends: -------------------------------------------------------------------------------- 1 | git make 2 | linux-headers make 3 | nspr 4 | nspr make 5 | sqlite 6 | zlib 7 | -------------------------------------------------------------------------------- /extra/nss/files/generated.hash: -------------------------------------------------------------------------------- 1 | d8e616c634e0be5de1838d9283f6c3fd74cc979e 2 | 9ac213b003fcc3f2c707e43dc8e79a6b6392fa01 3 | -------------------------------------------------------------------------------- /extra/nss/patches/native-nsinstall-cflags.patch: -------------------------------------------------------------------------------- 1 | --- nss-3.80.orig/nss/coreconf/nsinstall/Makefile 2 | +++ nss-3.80/nss/coreconf/nsinstall/Makefile 3 | @@ -32,6 +32,7 @@ endif 4 | 5 | ifdef NATIVE_FLAGS 6 | OS_CFLAGS=$(NATIVE_FLAGS) 7 | +XCFLAGS = $(NATIVE_FLAGS) 8 | endif 9 | 10 | ifdef NATIVE_LDFLAGS 11 | -------------------------------------------------------------------------------- /extra/nss/sources: -------------------------------------------------------------------------------- 1 | https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_88_1_RTM/src/nss-3.88.1.tar.gz 2 | files/certdata.sh nss/lib/ckfw/builtins 3 | files/generated.hash 4 | patches/no-perl.patch 5 | patches/native-nsinstall-cflags.patch 6 | -------------------------------------------------------------------------------- /extra/nss/version: -------------------------------------------------------------------------------- 1 | 3.88.1 1 2 | -------------------------------------------------------------------------------- /extra/nvme-cli/checksums: -------------------------------------------------------------------------------- 1 | 2e36dc890567374fcaacb91a0d1eace0f0676524e53acd9e5660e848d393cc6b 2 | 98284ad2cf89933760bc1d8231dd3fa351b8c6cd8a1916f9abb942b3c3dd1796 3 | -------------------------------------------------------------------------------- /extra/nvme-cli/depends: -------------------------------------------------------------------------------- 1 | json-c 2 | libnvme 3 | util-linux 4 | zlib 5 | -------------------------------------------------------------------------------- /extra/nvme-cli/sources: -------------------------------------------------------------------------------- 1 | https://github.com/linux-nvme/nvme-cli/archive/vVERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/nvme-cli/version: -------------------------------------------------------------------------------- 1 | 2.3 1 2 | -------------------------------------------------------------------------------- /extra/opendoas/checksums: -------------------------------------------------------------------------------- 1 | 6da058a0e70b7543bc60624389b0b00b686189ec933828c522bf8b2600495a67 2 | 846a251c646e61329086eda6abde26329f5a358d5eeab1a0f075db36e5997687 3 | -------------------------------------------------------------------------------- /extra/opendoas/depends: -------------------------------------------------------------------------------- 1 | bison make 2 | -------------------------------------------------------------------------------- /extra/opendoas/sources: -------------------------------------------------------------------------------- 1 | https://github.com/Duncaen/OpenDoas/archive/vVERSION.tar.gz 2 | files/doas.conf 3 | -------------------------------------------------------------------------------- /extra/opendoas/version: -------------------------------------------------------------------------------- 1 | 6.8.2 1 2 | -------------------------------------------------------------------------------- /extra/openresolv/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE \ 7 | --sbindir=/usr/bin \ 8 | --sysconfdir=/etc 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /extra/openresolv/checksums: -------------------------------------------------------------------------------- 1 | 42b30508e857a228535c631eaac936862d86eca68c14b5c0bf387ba176b91b97 2 | -------------------------------------------------------------------------------- /extra/openresolv/sources: -------------------------------------------------------------------------------- 1 | https://roy.marples.name/downloads/openresolv/openresolv-3.12.0.tar.xz 2 | -------------------------------------------------------------------------------- /extra/openresolv/version: -------------------------------------------------------------------------------- 1 | 3.12.0 1 2 | -------------------------------------------------------------------------------- /extra/openssh/checksums: -------------------------------------------------------------------------------- 1 | 3f66dbf1655fb45f50e1c56da62ab01218c228807b21338d634ebcdf9d71cf46 2 | cd9a79943f8f6c05373bd70afc22a230f3c5e6e6200b9115f598e180dacefb54 3 | -------------------------------------------------------------------------------- /extra/openssh/depends: -------------------------------------------------------------------------------- 1 | openssl 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/openssh/files/sshd.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec /usr/bin/sshd -D 3 | -------------------------------------------------------------------------------- /extra/openssh/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Generate host keys if they don't already exist. 4 | if [ -f /usr/bin/ssh-keygen ]; then 5 | mkdir -p $KISS_ROOT/etc/ssh 6 | ssh-keygen -A -f ${KISS_ROOT:-/} 7 | fi 8 | -------------------------------------------------------------------------------- /extra/openssh/sources: -------------------------------------------------------------------------------- 1 | https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-VERSION.tar.gz 2 | files/sshd.run 3 | -------------------------------------------------------------------------------- /extra/openssh/version: -------------------------------------------------------------------------------- 1 | 9.2p1 1 2 | -------------------------------------------------------------------------------- /extra/opus/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE \ 7 | --enable-custom-modes \ 8 | --enable-float-approx 9 | 10 | make 11 | make install 12 | -------------------------------------------------------------------------------- /extra/opus/checksums: -------------------------------------------------------------------------------- 1 | 65b58e1e25b2a114157014736a3d9dfeaad8d41be1c8179866f144a2fb44ff9d opus-1.3.1.tar.gz 2 | -------------------------------------------------------------------------------- /extra/opus/sources: -------------------------------------------------------------------------------- 1 | https://archive.mozilla.org/pub/opus/opus-1.3.1.tar.gz 2 | -------------------------------------------------------------------------------- /extra/opus/version: -------------------------------------------------------------------------------- 1 | 1.3.1 1 2 | -------------------------------------------------------------------------------- /extra/p11-kit/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE \ 7 | --without-libtasn1 8 | 9 | make 10 | make install 11 | -------------------------------------------------------------------------------- /extra/p11-kit/checksums: -------------------------------------------------------------------------------- 1 | d8be783efd5cd4ae534cee4132338e3f40f182c3205d23b200094ec85faaaef8 2 | -------------------------------------------------------------------------------- /extra/p11-kit/sources: -------------------------------------------------------------------------------- 1 | https://github.com/p11-glue/p11-kit/releases/download/VERSION/p11-kit-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /extra/p11-kit/version: -------------------------------------------------------------------------------- 1 | 0.24.1 1 2 | -------------------------------------------------------------------------------- /extra/pango/checksums: -------------------------------------------------------------------------------- 1 | 34292769f469a00107fbe801a5d19878c6f5ccb59340928bca355833c074980d 2 | fb69568c89cc1c00a3d5f5aaffa048ffe2d1d846a6153f7c7c2665717e10191f 3 | -------------------------------------------------------------------------------- /extra/pango/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | fontconfig 3 | freetype-harfbuzz 4 | glib 5 | glib make 6 | meson make 7 | pkgconf make 8 | -------------------------------------------------------------------------------- /extra/pango/sources: -------------------------------------------------------------------------------- 1 | https://github.com/GNOME/pango/archive/VERSION.tar.gz 2 | patches/no-fribidi.patch 3 | -------------------------------------------------------------------------------- /extra/pango/version: -------------------------------------------------------------------------------- 1 | 1.50.14 1 2 | -------------------------------------------------------------------------------- /extra/patchelf/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE 7 | 8 | make 9 | make install 10 | -------------------------------------------------------------------------------- /extra/patchelf/checksums: -------------------------------------------------------------------------------- 1 | bae2ea376072e422c196218dd9bdef0548ccc08da4de9f36b4672df84ea2d8e2 2 | -------------------------------------------------------------------------------- /extra/patchelf/sources: -------------------------------------------------------------------------------- 1 | https://github.com/NixOS/patchelf/releases/download/VERSION/patchelf-VERSION.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/patchelf/version: -------------------------------------------------------------------------------- 1 | 0.17.2 1 2 | -------------------------------------------------------------------------------- /extra/pciutils/checksums: -------------------------------------------------------------------------------- 1 | 01f5b9ee8eff577e9953a43bafb3ead76e0654a7288dc26d79627074956fb1e0 2 | 01f5b9ee8eff577e9953a43bafb3ead76e0654a7288dc26d79627074956fb1e0 3 | -------------------------------------------------------------------------------- /extra/pciutils/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /extra/pciutils/sources: -------------------------------------------------------------------------------- 1 | https://www.kernel.org/pub/software/utils/pciutils/pciutils-VERSION.tar.gz yes 2 | https://www.kernel.org/pub/software/utils/pciutils/pciutils-VERSION.tar.gz no 3 | -------------------------------------------------------------------------------- /extra/pciutils/version: -------------------------------------------------------------------------------- 1 | 3.9.0 1 2 | -------------------------------------------------------------------------------- /extra/pcre/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export LDFLAGS="$LDFLAGS -L$KISS_ROOT/usr/lib" 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --build=$KISS_XBUILD_TRIPLE \ 8 | --host=$KISS_XHOST_TRIPLE \ 9 | --enable-unicode-properties 10 | 11 | make 12 | make install 13 | 14 | rm -rf "$1/usr/share/doc" 15 | -------------------------------------------------------------------------------- /extra/pcre/checksums: -------------------------------------------------------------------------------- 1 | 4e6ce03e0336e8b4a3d6c2b70b1c5e18590a5673a98186da90d4f33c23defc09 2 | -------------------------------------------------------------------------------- /extra/pcre/sources: -------------------------------------------------------------------------------- 1 | https://downloads.sourceforge.net/pcre/pcre-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/pcre/version: -------------------------------------------------------------------------------- 1 | 8.45 1 2 | -------------------------------------------------------------------------------- /extra/pcre2/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export LDFLAGS="$LDFLAGS -L$KISS_ROOT/usr/lib" 4 | 5 | ./configure \ 6 | --build=$KISS_XBUILD_TRIPLE \ 7 | --host=$KISS_XHOST_TRIPLE \ 8 | --prefix=/usr \ 9 | --enable-pcre2-16 \ 10 | --enable-pcre2-32 \ 11 | --enable-pcre2grep-libz \ 12 | --enable-pcre2grep-libbz2 \ 13 | --enable-jit 14 | 15 | make 16 | make install 17 | -------------------------------------------------------------------------------- /extra/pcre2/checksums: -------------------------------------------------------------------------------- 1 | 8d36cd8cb6ea2a4c2bb358ff6411b0c788633a2a45dabbf1aeb4b701d1b5e840 2 | -------------------------------------------------------------------------------- /extra/pcre2/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/pcre2/sources: -------------------------------------------------------------------------------- 1 | https://github.com/PCRE2Project/pcre2/releases/download/pcre2-VERSION/pcre2-VERSION.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/pcre2/version: -------------------------------------------------------------------------------- 1 | 10.42 1 2 | -------------------------------------------------------------------------------- /extra/perl/checksums: -------------------------------------------------------------------------------- 1 | 57cc47c735c8300a8ce2fa0643507b44c4ae59012bfdad0121313db639e02309 2 | 4010f41870d64e3957b4b8ce70ebba10a7c4a3e86c5551acb4099c3fcbb37ce5 3 | -------------------------------------------------------------------------------- /extra/perl/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/perl/sources: -------------------------------------------------------------------------------- 1 | https://www.cpan.org/src/5.0/perl-VERSION.tar.xz 2 | https://github.com/arsv/perl-cross/releases/download/1.3.6/perl-cross-1.3.6.tar.gz 3 | -------------------------------------------------------------------------------- /extra/perl/version: -------------------------------------------------------------------------------- 1 | 5.32.1 1 2 | -------------------------------------------------------------------------------- /extra/pfetch/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | install -Dm 755 pfetch "$1/usr/bin/pfetch" 4 | -------------------------------------------------------------------------------- /extra/pfetch/checksums: -------------------------------------------------------------------------------- 1 | d1f611e61c1f8ae55bd14f8f6054d06fcb9a2d973095367c1626842db66b3182 0.6.0.tar.gz 2 | -------------------------------------------------------------------------------- /extra/pfetch/sources: -------------------------------------------------------------------------------- 1 | https://github.com/dylanaraps/pfetch/archive/0.6.0.tar.gz 2 | -------------------------------------------------------------------------------- /extra/pfetch/version: -------------------------------------------------------------------------------- 1 | 0.6.0 1 2 | -------------------------------------------------------------------------------- /extra/picocom/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | sed -i "s/gcc/clang/g" Makefile 4 | 5 | make 6 | 7 | mkdir -p $1/usr/bin 8 | cp picocom $1/usr/bin 9 | -------------------------------------------------------------------------------- /extra/picocom/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/npat-efault/picocom.git#1acf1ddabaf3576b4023c4f6f09c5a3e4b086fb8 2 | -------------------------------------------------------------------------------- /extra/picocom/version: -------------------------------------------------------------------------------- 1 | 3.2a 1 2 | -------------------------------------------------------------------------------- /extra/pkgconf/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --build=$KISS_XBUILD_TRIPLE \ 7 | --host=$KISS_XHOST_TRIPLE 8 | 9 | make 10 | make install 11 | 12 | ln -s pkgconf "$1/usr/bin/pkg-config" 13 | 14 | # Remove documentation (README, etc). 15 | rm -rf "$1/usr/share/doc" 16 | -------------------------------------------------------------------------------- /extra/pkgconf/checksums: -------------------------------------------------------------------------------- 1 | daccf1bbe5a30d149b556c7d2ffffeafd76d7b514e249271abdd501533c1d8ae 2 | -------------------------------------------------------------------------------- /extra/pkgconf/sources: -------------------------------------------------------------------------------- 1 | https://distfiles.dereferenced.org/pkgconf/pkgconf-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /extra/pkgconf/version: -------------------------------------------------------------------------------- 1 | 1.9.4 1 2 | -------------------------------------------------------------------------------- /extra/plzip/checksums: -------------------------------------------------------------------------------- 1 | 14d8d1db8dde76bdd9060b59d50b2943417eb4c0fbd2b84736546b78fab5f1a7 2 | 2472f8d93830d0952b0c75f67e372d38c8f7c174dde2252369d5b20c87d3ba8e 3 | -------------------------------------------------------------------------------- /extra/plzip/sources: -------------------------------------------------------------------------------- 1 | https://download.savannah.gnu.org/releases/lzip/plzip/plzip-1.9.tar.gz 2 | https://download.savannah.gnu.org/releases/lzip/lzlib/lzlib-1.9.tar.gz lzlib 3 | -------------------------------------------------------------------------------- /extra/plzip/version: -------------------------------------------------------------------------------- 1 | 1.10 1 2 | -------------------------------------------------------------------------------- /extra/python-docutils/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | python3 setup.py build 4 | python3 setup.py install \ 5 | --prefix=/usr \ 6 | --root="$1" 7 | -------------------------------------------------------------------------------- /extra/python-docutils/checksums: -------------------------------------------------------------------------------- 1 | 33995a6753c30b7f577febfc2c50411fec6aac7f7ffeb7c4cfe5991072dcf9e6 2 | -------------------------------------------------------------------------------- /extra/python-docutils/depends: -------------------------------------------------------------------------------- 1 | python 2 | python-markupsafe 3 | -------------------------------------------------------------------------------- /extra/python-docutils/sources: -------------------------------------------------------------------------------- 1 | https://downloads.sourceforge.net/docutils/docutils-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/python-docutils/version: -------------------------------------------------------------------------------- 1 | 0.19 2 2 | -------------------------------------------------------------------------------- /extra/python-mako/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | python3 setup.py build 4 | python3 setup.py install \ 5 | --prefix=/usr \ 6 | --root="$1" 7 | -------------------------------------------------------------------------------- /extra/python-mako/checksums: -------------------------------------------------------------------------------- 1 | d60a3903dc3bb01a18ad6a89cdbe2e4eadc69c0bc8ef1e3773ba53d44c3f7a34 2 | -------------------------------------------------------------------------------- /extra/python-mako/depends: -------------------------------------------------------------------------------- 1 | python 2 | python-markupsafe 3 | -------------------------------------------------------------------------------- /extra/python-mako/sources: -------------------------------------------------------------------------------- 1 | https://files.pythonhosted.org/packages/source/M/Mako/Mako-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/python-mako/version: -------------------------------------------------------------------------------- 1 | 1.2.4 1 2 | -------------------------------------------------------------------------------- /extra/python-markupsafe/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | python3 setup.py build 4 | python3 setup.py install \ 5 | --prefix=/usr \ 6 | --root="$1" 7 | -------------------------------------------------------------------------------- /extra/python-markupsafe/checksums: -------------------------------------------------------------------------------- 1 | b429cfea1984deee9cade7da361a5f026eebe021e5880a534645ef0794fdd49b 2 | -------------------------------------------------------------------------------- /extra/python-markupsafe/depends: -------------------------------------------------------------------------------- 1 | python 2 | -------------------------------------------------------------------------------- /extra/python-markupsafe/sources: -------------------------------------------------------------------------------- 1 | https://github.com/pallets/markupsafe/archive/refs/tags/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/python-markupsafe/version: -------------------------------------------------------------------------------- 1 | 2.1.2 1 2 | -------------------------------------------------------------------------------- /extra/python/checksums: -------------------------------------------------------------------------------- 1 | 29e4b8f5f1658542a8c13e2dd277358c9c48f2b2f7318652ef1675e402b9d2af 2 | 839bb1420041ea5fd68d3fe158bc234fc5bab6d8978ac12d9874366e697a6fcc 3 | e39e9562cf5b864500ef358960545787761fc4271829d22b19c893d1ce0e4546 4 | -------------------------------------------------------------------------------- /extra/python/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | expat 3 | libffi 4 | openssl 5 | sqlite 6 | zlib 7 | -------------------------------------------------------------------------------- /extra/python/sources: -------------------------------------------------------------------------------- 1 | https://www.python.org/ftp/python/VERSION/Python-VERSION.tar.xz 2 | patches/python3-always-pip.patch 3 | patches/python3-pyc-hash.patch 4 | -------------------------------------------------------------------------------- /extra/python/version: -------------------------------------------------------------------------------- 1 | 3.11.2 1 2 | -------------------------------------------------------------------------------- /extra/qemu/checksums: -------------------------------------------------------------------------------- 1 | 5b49ce2687744dad494ae90a898c52204a3406e84d072482a1e1be854eeb2157 2 | dd1d36a8090f738ce5467f26dd0180681cde24271b8986f6982a47c0450575df 3 | d80e3581c445fc90eb9d6effbb9e466b5d5bb9732cd72ee4de2dae050694dff1 4 | -------------------------------------------------------------------------------- /extra/qemu/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | curl 3 | glib 4 | libffi 5 | libjpeg-turbo 6 | libslirp 7 | libudev-zero 8 | libxkbcommon 9 | ncurses 10 | nettle 11 | perl make 12 | pixman 13 | pkgconf make 14 | python 15 | sdl2 16 | zlib 17 | -------------------------------------------------------------------------------- /extra/qemu/sources: -------------------------------------------------------------------------------- 1 | https://download.qemu.org/qemu-VERSION.tar.xz 2 | patches/musl-ppc.patch 3 | patches/ppc-revert.patch 4 | -------------------------------------------------------------------------------- /extra/qemu/version: -------------------------------------------------------------------------------- 1 | 7.2.0 1 2 | -------------------------------------------------------------------------------- /extra/rsync/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CFLAGS="$CFLAGS -static" 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --build=$KISS_XBUILD_TRIPLE \ 8 | --host=$KISS_XHOST_TRIPLE \ 9 | --with-included-popt \ 10 | --disable-xxhash \ 11 | --disable-zstd \ 12 | --disable-lz4 \ 13 | --without-included-zlib 14 | 15 | make 16 | make install 17 | -------------------------------------------------------------------------------- /extra/rsync/checksums: -------------------------------------------------------------------------------- 1 | 4e7d9d3f6ed10878c58c5fb724a67dacf4b6aac7340b13e488fb2dc41346f2bb 2 | -------------------------------------------------------------------------------- /extra/rsync/depends: -------------------------------------------------------------------------------- 1 | zlib make 2 | -------------------------------------------------------------------------------- /extra/rsync/sources: -------------------------------------------------------------------------------- 1 | https://download.samba.org/pub/rsync/src/rsync-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/rsync/version: -------------------------------------------------------------------------------- 1 | 3.2.7 1 2 | -------------------------------------------------------------------------------- /extra/rust/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | curl make 3 | llvm 4 | openssl 5 | perl make 6 | pkgconf make 7 | python make 8 | xz 9 | zlib 10 | -------------------------------------------------------------------------------- /extra/rust/version: -------------------------------------------------------------------------------- 1 | 1.60.0 1 2 | -------------------------------------------------------------------------------- /extra/samurai/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make PREFIX=/usr 4 | make PREFIX=/usr install 5 | 6 | ln -sf samu "$1/usr/bin/ninja" 7 | ln -sf samu.1 "$1/usr/share/man/man1/ninja.1" 8 | -------------------------------------------------------------------------------- /extra/samurai/checksums: -------------------------------------------------------------------------------- 1 | 3b8cf51548dfc49b7efe035e191ff5e1963ebc4fe8f6064a5eefc5343eaf78a5 2 | -------------------------------------------------------------------------------- /extra/samurai/sources: -------------------------------------------------------------------------------- 1 | https://github.com/michaelforney/samurai/releases/download/VERSION/samurai-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/samurai/version: -------------------------------------------------------------------------------- 1 | 1.2 1 2 | -------------------------------------------------------------------------------- /extra/scdoc/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | patch -p1 < clang.patch 4 | 5 | if [ ! -z "$KISS_ROOT" ]; then 6 | sed -i -e "s|^HOST_SCDOC=.*|HOST_SCDOC=/usr/bin/scdoc|g" Makefile 7 | fi 8 | 9 | make PREFIX=/usr 10 | make PREFIX=/usr install 11 | -------------------------------------------------------------------------------- /extra/scdoc/checksums: -------------------------------------------------------------------------------- 1 | e9ff9981b5854301789a6778ee64ef1f6d1e5f4829a9dd3e58a9a63eacc2e6f0 2 | 272ae5f02eed2107559b9f4b1ac1a2bdf4d7f18f7f1988267a1c6d5634f6d37f 3 | -------------------------------------------------------------------------------- /extra/scdoc/sources: -------------------------------------------------------------------------------- 1 | https://git.sr.ht/~sircmpwn/scdoc/archive/VERSION.tar.gz 2 | patches/clang.patch 3 | -------------------------------------------------------------------------------- /extra/scdoc/version: -------------------------------------------------------------------------------- 1 | 1.11.2 1 2 | -------------------------------------------------------------------------------- /extra/sdl2/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | sed -i 's/`$PKG_CONFIG --variable=wayland_scanner wayland-scanner`/wayland-scanner/g' configure 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --build=$KISS_XBUILD_TRIPLE \ 8 | --host=$KISS_XHOST_TRIPLE \ 9 | --disable-video-x11 \ 10 | --enable-video-wayland 11 | 12 | make 13 | make DESTDIR="$1" install 14 | -------------------------------------------------------------------------------- /extra/sdl2/checksums: -------------------------------------------------------------------------------- 1 | c661205a553b7d252425f4b751ff13209e5e020b876bbfa1598494af61790057 2 | -------------------------------------------------------------------------------- /extra/sdl2/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/sdl2/sources: -------------------------------------------------------------------------------- 1 | https://libsdl.org/release/SDL2-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/sdl2/version: -------------------------------------------------------------------------------- 1 | 2.26.3 1 2 | -------------------------------------------------------------------------------- /extra/skalibs/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | patch -p1 < cross.patch 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --build=$KISS_XBUILD_TRIPLE \ 8 | --target=$KISS_XHOST_TRIPLE \ 9 | --with-sysdep-devurandom=yes \ 10 | --enable-shared 11 | 12 | make 13 | make DESTDIR="$1" install 14 | -------------------------------------------------------------------------------- /extra/skalibs/checksums: -------------------------------------------------------------------------------- 1 | b3c48938c7fba4b19a8b0dce6e7a11427717a0901160bb62cfc6823f8ac86d92 2 | 0c190106a3ab2ecfdeadecb65bc088b4f3492f362e27d28a41b5f74094f80d2e 3 | -------------------------------------------------------------------------------- /extra/skalibs/patches/cross.patch: -------------------------------------------------------------------------------- 1 | diff --git a/configure b/configure 2 | index 95b92f0..ab192d3 100755 3 | --- a/configure 4 | +++ b/configure 5 | @@ -504,7 +504,7 @@ fi 6 | 7 | # Find a C compiler to use 8 | if test -n "$target" && test x${build} != x${target} ; then 9 | - cross=${target}- 10 | + cross= 11 | else 12 | cross= 13 | fi 14 | -------------------------------------------------------------------------------- /extra/skalibs/sources: -------------------------------------------------------------------------------- 1 | https://www.skarnet.org/software/skalibs/skalibs-VERSION.tar.gz 2 | patches/cross.patch 3 | -------------------------------------------------------------------------------- /extra/skalibs/version: -------------------------------------------------------------------------------- 1 | 2.13.1.0 1 2 | -------------------------------------------------------------------------------- /extra/sqlite/checksums: -------------------------------------------------------------------------------- 1 | 49f77ac53fd9aa5d7395f2499cb816410e5621984a121b858ccca05310b05c70 2 | -------------------------------------------------------------------------------- /extra/sqlite/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /extra/sqlite/sources: -------------------------------------------------------------------------------- 1 | https://sqlite.org/2023/sqlite-autoconf-MAJORMINOR0PATCH00.tar.gz 2 | -------------------------------------------------------------------------------- /extra/sqlite/version: -------------------------------------------------------------------------------- 1 | 3.41.0 1 2 | -------------------------------------------------------------------------------- /extra/ssu/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make 4 | make \ 5 | PREFIX=/usr \ 6 | BINOWN="$(id -u)" \ 7 | BINGRP="$(id -g)" \ 8 | install 9 | -------------------------------------------------------------------------------- /extra/ssu/checksums: -------------------------------------------------------------------------------- 1 | 949bcfc5bd1a9908d1c9ff754bd16d092c9dcfde36e4f5d8785eb47d5baf1cec 2 | -------------------------------------------------------------------------------- /extra/ssu/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | chown root:wheel $KISS_ROOT/usr/bin/ssu 4 | chmod 4754 $KISS_ROOT/usr/bin/ssu 5 | -------------------------------------------------------------------------------- /extra/ssu/sources: -------------------------------------------------------------------------------- 1 | https://github.com/illiliti/ssu/archive/refs/tags/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/ssu/version: -------------------------------------------------------------------------------- 1 | 0.3.2 1 2 | -------------------------------------------------------------------------------- /extra/strace/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CFLAGS="$CFLAGS -Werror,-Wno-unused-function" 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --build=$KISS_XBUILD_TRIPLE \ 8 | --host=$KISS_XHOST_TRIPLE \ 9 | --disable-mpers 10 | 11 | make 12 | make install 13 | -------------------------------------------------------------------------------- /extra/strace/checksums: -------------------------------------------------------------------------------- 1 | 0c7d38a449416268d3004029a220a15a77c2206a03cc88120f37f46e949177e8 2 | -------------------------------------------------------------------------------- /extra/strace/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | -------------------------------------------------------------------------------- /extra/strace/sources: -------------------------------------------------------------------------------- 1 | https://github.com/strace/strace/releases/download/vVERSION/strace-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /extra/strace/version: -------------------------------------------------------------------------------- 1 | 6.2 1 2 | -------------------------------------------------------------------------------- /extra/sudo/checksums: -------------------------------------------------------------------------------- 1 | df2004fde4c1033b1fdca339958e0ec633d393d604fcff9d1513abef1f94574d 2 | -------------------------------------------------------------------------------- /extra/sudo/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /extra/sudo/sources: -------------------------------------------------------------------------------- 1 | https://www.sudo.ws/dist/sudo-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/sudo/version: -------------------------------------------------------------------------------- 1 | 1.9.13p2 1 2 | -------------------------------------------------------------------------------- /extra/tmux/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | patch -p0 < reallocarray.patch 4 | 5 | autoreconf -f -i -v 6 | 7 | ./configure \ 8 | --prefix=/usr \ 9 | --build=$KISS_XBUILD_TRIPLE \ 10 | --host=$KISS_XHOST_TRIPLE \ 11 | --sysconfdir=/etc \ 12 | --mandir=/usr/share/man \ 13 | --localstatedir=/var 14 | 15 | make 16 | make install 17 | -------------------------------------------------------------------------------- /extra/tmux/checksums: -------------------------------------------------------------------------------- 1 | 551553a4f82beaa8dadc9256800bcc284d7c000081e47aa6ecbb6ff36eacd05f 2 | a82f9c1841415ba1ad4d1fc111181febb01f154697c515c1ddbf0242b3cbd148 3 | -------------------------------------------------------------------------------- /extra/tmux/depends: -------------------------------------------------------------------------------- 1 | automake make 2 | libevent 3 | ncurses 4 | -------------------------------------------------------------------------------- /extra/tmux/sources: -------------------------------------------------------------------------------- 1 | https://github.com/tmux/tmux/releases/download/3.2a/tmux-3.2a.tar.gz 2 | patches/reallocarray.patch 3 | -------------------------------------------------------------------------------- /extra/tmux/version: -------------------------------------------------------------------------------- 1 | 3.3a 1 2 | -------------------------------------------------------------------------------- /extra/ttf-croscore/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | mkdir -p "$1/usr/share/fonts/TTF/croscore" 4 | 5 | cp -f ./*.ttf "$1/usr/share/fonts/TTF/croscore" 6 | 7 | # Ensure that font files are readable. 8 | chmod 644 "$1/usr/share/fonts/TTF/croscore"/*.ttf 9 | -------------------------------------------------------------------------------- /extra/ttf-croscore/checksums: -------------------------------------------------------------------------------- 1 | 672c3487883ec1ef83d9254240d4327b014212abc823d06d15816095867315e1 2 | -------------------------------------------------------------------------------- /extra/ttf-croscore/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | if [ -f /usr/bin/fc-cache ]; then 4 | fc-cache --sysroot=${KISS_ROOT:-/} -vf & 5 | fi 6 | -------------------------------------------------------------------------------- /extra/ttf-croscore/sources: -------------------------------------------------------------------------------- 1 | https://gsdview.appspot.com/chromeos-localmirror/distfiles/croscorefonts-VERSION.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/ttf-croscore/version: -------------------------------------------------------------------------------- 1 | 1.31.0 2 2 | -------------------------------------------------------------------------------- /extra/tzdata/checksums: -------------------------------------------------------------------------------- 1 | cc1169a43591201964ba6977ce8a63bb9cbe2d6e6bdcde34cd609f50e9866039 2 | -------------------------------------------------------------------------------- /extra/tzdata/sources: -------------------------------------------------------------------------------- 1 | https://github.com/eggert/tz/archive/VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/tzdata/version: -------------------------------------------------------------------------------- 1 | 2022g 1 2 | -------------------------------------------------------------------------------- /extra/uboot-tools/checksums: -------------------------------------------------------------------------------- 1 | 7716cffb3394374baf36dd2bf0ebee770310db06e8b36305c26432d9e3eb2592 2 | -------------------------------------------------------------------------------- /extra/uboot-tools/sources: -------------------------------------------------------------------------------- 1 | https://source.denx.de/u-boot/u-boot/-/archive/v2021.07/u-boot-v2021.07.tar.gz 2 | -------------------------------------------------------------------------------- /extra/uboot-tools/version: -------------------------------------------------------------------------------- 1 | 2021.07 1 2 | -------------------------------------------------------------------------------- /extra/util-linux/checksums: -------------------------------------------------------------------------------- 1 | 60492a19b44e6cf9a3ddff68325b333b8b52b6c59ce3ebd6a0ecaa4c5117e84f 2 | -------------------------------------------------------------------------------- /extra/util-linux/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/util-linux/sources: -------------------------------------------------------------------------------- 1 | https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/vMAJOR.MINOR/util-linux-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /extra/util-linux/version: -------------------------------------------------------------------------------- 1 | 2.38.1 1 2 | -------------------------------------------------------------------------------- /extra/vim/depends: -------------------------------------------------------------------------------- 1 | ncurses 2 | -------------------------------------------------------------------------------- /extra/vim/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/vim/vim 2 | -------------------------------------------------------------------------------- /extra/vim/version: -------------------------------------------------------------------------------- 1 | git 1 2 | -------------------------------------------------------------------------------- /extra/visurf/checksums: -------------------------------------------------------------------------------- 1 | 495adf6b6614ce36fca6c605f7c321f9cb4a3df838043158122678ce2b3325b7 2 | 5146f2c9b3b73d78ebc85b4474020403e50ce39d6bad9751f66930425442599e 3 | 30f0b053b6bdd9e32be1aa4568f81dd665acd575f5ade9641746dd93f3608520 4 | -------------------------------------------------------------------------------- /extra/visurf/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | curl 3 | expat 4 | flex make 5 | freetype-harfbuzz 6 | glib 7 | gperf make 8 | libjpeg-turbo 9 | libpng 10 | libwebp 11 | libxkbcommon 12 | openssl 13 | pango 14 | perl make 15 | pkgconf make 16 | wayland 17 | zlib 18 | -------------------------------------------------------------------------------- /extra/visurf/sources: -------------------------------------------------------------------------------- 1 | http://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-3.10.tar.gz 2 | git+https://git.netsurf-browser.org/libcss.git#accad499aed29acb7bc8fb00bea3d9f2b7f43bd1 libcss-new/ 3 | git+https://git.sr.ht/~sircmpwn/visurf#3518302d74005fe228c7e0db86015e6ccfc00e85 visurf/ 4 | patches/nsgenbind.patch 5 | patches/testament.patch 6 | -------------------------------------------------------------------------------- /extra/visurf/version: -------------------------------------------------------------------------------- 1 | 20220129 1 2 | -------------------------------------------------------------------------------- /extra/wpa_supplicant/checksums: -------------------------------------------------------------------------------- 1 | 20df7ae5154b3830355f8ab4269123a87affdea59fe74fe9292a91d0d7e17b2f 2 | d2b57597b234c84b113e7640064c3273616c0bf086ad223d71f49aaea086ad59 3 | ea81361a44cede64fb42309e783f26ca1d0a4f6677a21550aad925b25405eeb0 4 | edc95eac8695181682d22773d2d500a8b2dbe427632f342094365b235be47ff7 5 | -------------------------------------------------------------------------------- /extra/wpa_supplicant/depends: -------------------------------------------------------------------------------- 1 | linux-headers make 2 | openssl 3 | -------------------------------------------------------------------------------- /extra/wpa_supplicant/files/wpa_supplicant.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec wpa_supplicant -C /etc/wpa_supplicant.conf 3 | -------------------------------------------------------------------------------- /extra/wpa_supplicant/sources: -------------------------------------------------------------------------------- 1 | https://w1.fi/releases/wpa_supplicant-VERSION.tar.gz 2 | https://github.com/sabotage-linux/libnl-tiny/archive/4225e93bec5304abee3386213213718367e54a93.tar.gz libnl 3 | files/.config wpa_supplicant 4 | files/wpa_supplicant.run wpa_supplicant 5 | -------------------------------------------------------------------------------- /extra/wpa_supplicant/version: -------------------------------------------------------------------------------- 1 | 2.10 1 2 | -------------------------------------------------------------------------------- /extra/x264/checksums: -------------------------------------------------------------------------------- 1 | 9a579ccdf6153cb6f968cedbc05b9391f71de0572996c5c1667440c3af058da4 2 | 0897dc92028d06bd98d4438c03dc8c6ff93e83c578e73a5d56e572494023e42b 3 | 3492ea559e8546f06472542b4f1ee0a77032076dcb0714454de23af754778cac 4 | -------------------------------------------------------------------------------- /extra/x264/depends: -------------------------------------------------------------------------------- 1 | nasm make 2 | -------------------------------------------------------------------------------- /extra/x264/sources: -------------------------------------------------------------------------------- 1 | https://code.videolan.org/videolan/x264/-/archive/eaa68fad9e5d201d42fde51665f2d137ae96baf0/x264-eaa68fad9e5d201d42fde51665f2d137ae96baf0.tar.bz2 2 | patches/portability.patch 3 | files/config.sub 4 | -------------------------------------------------------------------------------- /extra/x264/version: -------------------------------------------------------------------------------- 1 | eaa68fad9e5d201d42fde51665f2d137ae96baf0 1 2 | -------------------------------------------------------------------------------- /extra/x265/checksums: -------------------------------------------------------------------------------- 1 | e70a3335cacacbba0b3a20ec6fecd6783932288ebc8163ad74bcc9606477cae8 2 | -------------------------------------------------------------------------------- /extra/x265/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | nasm make 3 | -------------------------------------------------------------------------------- /extra/x265/sources: -------------------------------------------------------------------------------- 1 | https://bitbucket.org/multicoreware/x265_git/downloads/x265_VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/x265/version: -------------------------------------------------------------------------------- 1 | 3.5 1 2 | -------------------------------------------------------------------------------- /extra/xvidcore/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cp config.* build/generic 4 | cd build/generic 5 | 6 | ./configure \ 7 | --prefix=/usr \ 8 | --build=$KISS_XBUILD_TRIPLE \ 9 | --host=$KISS_XHOST_TRIPLE 10 | 11 | make 12 | make DESTDIR="$1" install 13 | -------------------------------------------------------------------------------- /extra/xvidcore/checksums: -------------------------------------------------------------------------------- 1 | aeeaae952d4db395249839a3bd03841d6844843f5a4f84c271ff88f7aa1acff7 2 | 3492ea559e8546f06472542b4f1ee0a77032076dcb0714454de23af754778cac 3 | 38c9c1918db4a87b9296da02346f0daa8c1acf18b6763227bf563268989315d3 4 | -------------------------------------------------------------------------------- /extra/xvidcore/depends: -------------------------------------------------------------------------------- 1 | nasm make 2 | -------------------------------------------------------------------------------- /extra/xvidcore/sources: -------------------------------------------------------------------------------- 1 | https://downloads.xvid.com/downloads/xvidcore-1.3.7.tar.bz2 2 | files/config.sub 3 | files/config.guess 4 | -------------------------------------------------------------------------------- /extra/xvidcore/version: -------------------------------------------------------------------------------- 1 | 1.3.7 1 2 | -------------------------------------------------------------------------------- /extra/yt-dlp/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make lazy-extractors 4 | make yt-dlp 5 | 6 | install -Dm755 yt-dlp "$1/usr/bin/yt-dlp" 7 | -------------------------------------------------------------------------------- /extra/yt-dlp/checksums: -------------------------------------------------------------------------------- 1 | 771d2abefcd5f1e6f3ab6d6d18cdae98be4ab73538d1174e7e7236640418e150 2 | -------------------------------------------------------------------------------- /extra/yt-dlp/depends: -------------------------------------------------------------------------------- 1 | python 2 | zip make 3 | -------------------------------------------------------------------------------- /extra/yt-dlp/sources: -------------------------------------------------------------------------------- 1 | https://github.com/yt-dlp/yt-dlp/releases/download/VERSION/yt-dlp.tar.gz 2 | -------------------------------------------------------------------------------- /extra/yt-dlp/version: -------------------------------------------------------------------------------- 1 | 2023.03.04 1 2 | -------------------------------------------------------------------------------- /extra/zip/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make \ 4 | prefix=/usr \ 5 | CC="${CC:-cc} $CFLAGS $CXXFLAGS" \ 6 | -f unix/Makefile generic 7 | 8 | make \ 9 | prefix="$1/usr" \ 10 | MANDIR="$1/usr/share/man/man1" \ 11 | -f unix/Makefile install 12 | -------------------------------------------------------------------------------- /extra/zip/checksums: -------------------------------------------------------------------------------- 1 | f0e8bb1f9b7eb0b01285495a2699df3a4b766784c1765a8f1aeedf63c0806369 zip30.tar.gz 2 | -------------------------------------------------------------------------------- /extra/zip/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | -------------------------------------------------------------------------------- /extra/zip/sources: -------------------------------------------------------------------------------- 1 | https://downloads.sourceforge.net/infozip/zip30.tar.gz 2 | -------------------------------------------------------------------------------- /extra/zip/version: -------------------------------------------------------------------------------- 1 | 3.0 2 2 | -------------------------------------------------------------------------------- /extra/zstd/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | sed 's/^FLAGS.*=/FLAGS = -static /' programs/Makefile > _ 4 | mv -f _ programs/Makefile 5 | 6 | make \ 7 | PREFIX=/usr \ 8 | HAVE_LZMA=0 \ 9 | HAVE_ZLIB=0 \ 10 | HAVE_LZ4=0 \ 11 | install 12 | -------------------------------------------------------------------------------- /extra/zstd/checksums: -------------------------------------------------------------------------------- 1 | 0f470992aedad543126d06efab344dc5f3e171893810455787d38347343a4424 2 | -------------------------------------------------------------------------------- /extra/zstd/sources: -------------------------------------------------------------------------------- 1 | https://github.com/facebook/zstd/releases/download/vVERSION/zstd-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /extra/zstd/version: -------------------------------------------------------------------------------- 1 | 1.5.4 1 2 | -------------------------------------------------------------------------------- /gcc/_binutils/checksums: -------------------------------------------------------------------------------- 1 | e316477a914f567eccc34d5d29785b8b0f5a10208d36bbacedcc39048ecfe024 2 | 9374c853799630e0aa0b3a97db260874418bbee3a21d8becad6a019c9f436636 3 | -------------------------------------------------------------------------------- /gcc/_binutils/depends: -------------------------------------------------------------------------------- 1 | flex 2 | zlib 3 | -------------------------------------------------------------------------------- /gcc/_binutils/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/binutils/binutils-VERSION.tar.xz 2 | patches/fix-fd-issue.patch 3 | -------------------------------------------------------------------------------- /gcc/_binutils/version: -------------------------------------------------------------------------------- 1 | 2.38 1 2 | -------------------------------------------------------------------------------- /gcc/_gcc/checksums: -------------------------------------------------------------------------------- 1 | d08edc536b54c372a1010ff6619dd274c0f1603aa49212ba20f7aa2cda36fa8b 2 | fd4829912cddd12f84181c3451cc752be224643e87fac497b69edddadc49b4f2 3 | 0c98a3f1732ff6ca4ea690552079da9c597872d30e96ec28414ee23c95558a7f 4 | 17503d2c395dfcf106b622dc142683c1199431d095367c6aacba6eec30340459 5 | -------------------------------------------------------------------------------- /gcc/_gcc/files/c99: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec cc -std=c99 "$@" 3 | -------------------------------------------------------------------------------- /gcc/_gcc/sources: -------------------------------------------------------------------------------- 1 | https://gcc.gnu.org/pub/gcc/releases/gcc-11.2.0/gcc-11.2.0.tar.xz gcc 2 | https://ftp.gnu.org/gnu/gmp/gmp-6.2.1.tar.xz gcc/gmp 3 | https://ftp.gnu.org/gnu/mpfr/mpfr-4.1.0.tar.xz gcc/mpfr 4 | https://ftp.gnu.org/gnu/mpc/mpc-1.2.1.tar.gz gcc/mpc 5 | -------------------------------------------------------------------------------- /gcc/_gcc/version: -------------------------------------------------------------------------------- 1 | 12.1.0 1 2 | -------------------------------------------------------------------------------- /gcc/binutils-aarch64: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-armnone: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-armv7: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-i686: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-or1k: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-powerpc: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-powerpc64: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-powerpc64le: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-powerpcle: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-riscv64: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/binutils-x86_64: -------------------------------------------------------------------------------- 1 | _binutils -------------------------------------------------------------------------------- /gcc/gcc-aarch64/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-aarch64/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-aarch64/depends: -------------------------------------------------------------------------------- 1 | binutils-aarch64 2 | binutils-aarch64 make 3 | bison make 4 | flex make 5 | zlib 6 | -------------------------------------------------------------------------------- /gcc/gcc-aarch64/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-aarch64/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-aarch64/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-armnone/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-armnone/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-armnone/depends: -------------------------------------------------------------------------------- 1 | binutils-armnone 2 | binutils-armnone make 3 | bison make 4 | flex make 5 | zlib 6 | -------------------------------------------------------------------------------- /gcc/gcc-armnone/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-armnone/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-armnone/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-armv7/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-armv7/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-armv7/depends: -------------------------------------------------------------------------------- 1 | binutils-armv7 2 | binutils-armv7 make 3 | bison make 4 | flex make 5 | zlib 6 | -------------------------------------------------------------------------------- /gcc/gcc-armv7/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-armv7/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-armv7/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-i686/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-i686/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-i686/depends: -------------------------------------------------------------------------------- 1 | binutils-i686 2 | binutils-i686 make 3 | bison make 4 | flex make 5 | zlib 6 | -------------------------------------------------------------------------------- /gcc/gcc-i686/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-i686/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-i686/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-or1k/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-or1k/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-or1k/depends: -------------------------------------------------------------------------------- 1 | binutils-or1k 2 | binutils-or1k make 3 | bison make 4 | flex make 5 | zlib 6 | -------------------------------------------------------------------------------- /gcc/gcc-or1k/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-or1k/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-or1k/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-powerpc/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-powerpc/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-powerpc/depends: -------------------------------------------------------------------------------- 1 | binutils-powerpc 2 | binutils-powerpc make 3 | bison make 4 | flex make 5 | zlib 6 | -------------------------------------------------------------------------------- /gcc/gcc-powerpc/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-powerpc/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-powerpc/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-powerpc64/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-powerpc64/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-powerpc64/depends: -------------------------------------------------------------------------------- 1 | binutils-powerpc64 2 | binutils-powerpc64 make 3 | bison make 4 | flex make 5 | zlib 6 | -------------------------------------------------------------------------------- /gcc/gcc-powerpc64/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-powerpc64/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-powerpc64/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-powerpc64le/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-powerpc64le/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-powerpc64le/depends: -------------------------------------------------------------------------------- 1 | binutils-powerpc64le 2 | binutils-powerpc64le make 3 | bison make 4 | flex make 5 | zlib 6 | -------------------------------------------------------------------------------- /gcc/gcc-powerpc64le/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-powerpc64le/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-powerpc64le/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-powerpcle/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-powerpcle/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-powerpcle/depends: -------------------------------------------------------------------------------- 1 | binutils-powerpcle 2 | binutils-powerpcle make 3 | bison make 4 | flex make 5 | zlib 6 | -------------------------------------------------------------------------------- /gcc/gcc-powerpcle/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-powerpcle/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-powerpcle/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-riscv64/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-riscv64/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-riscv64/depends: -------------------------------------------------------------------------------- 1 | binutils-riscv64 2 | binutils-riscv64 make 3 | bison make 4 | flex make 5 | zlib 6 | -------------------------------------------------------------------------------- /gcc/gcc-riscv64/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-riscv64/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-riscv64/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /gcc/gcc-x86_64/build: -------------------------------------------------------------------------------- 1 | ../_gcc/build -------------------------------------------------------------------------------- /gcc/gcc-x86_64/checksums: -------------------------------------------------------------------------------- 1 | ../_gcc/checksums -------------------------------------------------------------------------------- /gcc/gcc-x86_64/depends: -------------------------------------------------------------------------------- 1 | binutils-x86_64 2 | binutils-x86_64 make 3 | bison make 4 | flex make 5 | zlib 6 | -------------------------------------------------------------------------------- /gcc/gcc-x86_64/files: -------------------------------------------------------------------------------- 1 | ../_gcc/files -------------------------------------------------------------------------------- /gcc/gcc-x86_64/sources: -------------------------------------------------------------------------------- 1 | ../_gcc/sources -------------------------------------------------------------------------------- /gcc/gcc-x86_64/version: -------------------------------------------------------------------------------- 1 | ../_gcc/version -------------------------------------------------------------------------------- /system/atf/checksums: -------------------------------------------------------------------------------- 1 | 3905a6d6affa84fb629d1565a4e4bdc82812bba49a457b8249ab445eeb28011b 2 | a13a66c2bd9e1fac4e43dad17188a245b76e75f448dd273663935c5378178d15 3 | -------------------------------------------------------------------------------- /system/atf/depends: -------------------------------------------------------------------------------- 1 | gcc-aarch64 make 2 | gcc-armnone make 3 | -------------------------------------------------------------------------------- /system/atf/sources: -------------------------------------------------------------------------------- 1 | https://github.com/ARM-software/arm-trusted-firmware/archive/vVERSION.tar.gz 2 | patches/rk3399-baudrate.patch 3 | -------------------------------------------------------------------------------- /system/atf/version: -------------------------------------------------------------------------------- 1 | 2.6 1 2 | -------------------------------------------------------------------------------- /system/crust/checksums: -------------------------------------------------------------------------------- 1 | 8b23b2649bbd19dfb84ae00b2419539b8236c6ae9a380beff7dffafd3f41f31b 2 | -------------------------------------------------------------------------------- /system/crust/depends: -------------------------------------------------------------------------------- 1 | gcc-or1k make 2 | -------------------------------------------------------------------------------- /system/crust/sources: -------------------------------------------------------------------------------- 1 | https://github.com/crust-firmware/crust/archive/refs/tags/vVERSION.tar.gz 2 | -------------------------------------------------------------------------------- /system/crust/version: -------------------------------------------------------------------------------- 1 | 0.5 1 2 | -------------------------------------------------------------------------------- /system/dtc/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --cross-file="meson.config" \ 8 | . build 9 | 10 | ninja -C build 11 | ninja -C build install 12 | -------------------------------------------------------------------------------- /system/dtc/checksums: -------------------------------------------------------------------------------- 1 | 70d9c156ec86d63de0f7bdae50540ffa492b25ec1d69491c7520845c860b9a62 2 | -------------------------------------------------------------------------------- /system/dtc/depends: -------------------------------------------------------------------------------- 1 | libyaml 2 | -------------------------------------------------------------------------------- /system/dtc/sources: -------------------------------------------------------------------------------- 1 | https://git.kernel.org/pub/scm/utils/dtc/dtc.git/snapshot/dtc-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /system/dtc/version: -------------------------------------------------------------------------------- 1 | 1.7.0 1 2 | -------------------------------------------------------------------------------- /system/linux-pinephone/checksums: -------------------------------------------------------------------------------- 1 | b3e9ba06a299a3e2ead4a15753bc46a3e0c90d3b92ffeed1034ccc9f13a717f0 2 | 48a05cefc5e0d7bc2e628cb8534dce144ce52f28be99edbc86527958316f2331 3 | ad300187c53a0de9ecaadf538b4c37fa7e9945bdc2d66d953a92d75962f0a19d 4 | -------------------------------------------------------------------------------- /system/linux-pinephone/depends: -------------------------------------------------------------------------------- 1 | perl make 2 | -------------------------------------------------------------------------------- /system/linux-pinephone/patches/all.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glasnostlinux/glasnost/02ad405c2776243e330b3f2a4f0c4b30e06b7fdc/system/linux-pinephone/patches/all.patch -------------------------------------------------------------------------------- /system/linux-pinephone/sources: -------------------------------------------------------------------------------- 1 | https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-VERSION.tar.xz 2 | git+https://megous.com/git/linux-firmware#6e8e591e17e207644dfe747e51026967bb1edab5 firmware/ 3 | patches/all.patch 4 | files/.config 5 | -------------------------------------------------------------------------------- /system/linux-pinephone/version: -------------------------------------------------------------------------------- 1 | 5.15.6 1 2 | -------------------------------------------------------------------------------- /system/swig/checksums: -------------------------------------------------------------------------------- 1 | 2af08aced8fcd65cdb5cc62426768914bedc735b1c250325203716f78e39ac9b 2 | -------------------------------------------------------------------------------- /system/swig/depends: -------------------------------------------------------------------------------- 1 | pcre2 2 | zlib 3 | -------------------------------------------------------------------------------- /system/swig/sources: -------------------------------------------------------------------------------- 1 | http://prdownloads.sourceforge.net/swig/swig-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /system/swig/version: -------------------------------------------------------------------------------- 1 | 4.1.1 1 2 | -------------------------------------------------------------------------------- /system/uboot-pinephone/checksums: -------------------------------------------------------------------------------- 1 | 8183759efe0475aea37f3974f7535856dbaf94fbb88291519f279853adc36128 2 | edd8bc4f5cd02ef9de7c9c358ca5bf72d626f2704f048cae843290b733c6b259 3 | bd38275ee29bb8362d048cae49e95b202515c67ac0436be811e3b84b2569ecba 4 | -------------------------------------------------------------------------------- /system/uboot-pinephone/depends: -------------------------------------------------------------------------------- 1 | atf 2 | crust 3 | gcc-aarch64 make 4 | swig make 5 | -------------------------------------------------------------------------------- /system/uboot-pinephone/files/extlinux.conf: -------------------------------------------------------------------------------- 1 | MENU TITLE Glasnost linux boot menu 2 | 3 | label glasnost 4 | kernel /boot/vmlinux 5 | FDT /boot/pinephone.dtb 6 | append rw console=tty0 console=ttyS0,115200 root=/dev/mmcblk0p1 7 | -------------------------------------------------------------------------------- /system/uboot-pinephone/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "" 4 | echo "Run this to flash u-boot (replacing 'sdX' with the correct device):" 5 | echo "dd if=/boot/u-boot-sunxi-with-spl-pinephone.bin of=/dev/sdX bs=8k seek=1" 6 | echo "" 7 | echo "You should also customize /boot/extlinux/extlinux.conf" 8 | echo "" 9 | -------------------------------------------------------------------------------- /system/uboot-pinephone/sources: -------------------------------------------------------------------------------- 1 | https://source.denx.de/u-boot/u-boot/-/archive/v2021.10/u-boot-vVERSION.tar.bz2 2 | files/.config 3 | files/extlinux.conf 4 | -------------------------------------------------------------------------------- /system/uboot-pinephone/version: -------------------------------------------------------------------------------- 1 | 2021.10 1 2 | -------------------------------------------------------------------------------- /system/uboot-tools/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make CC="$CC" HOSTCC=clang tools-only_defconfig 4 | make CC="$CC" HOSTCC=clang tools-all 5 | 6 | mkdir -p $1/usr/bin 7 | cd tools 8 | for tool in bmp_logo dumpimage env/fw_printenv \ 9 | fit_check_sign fit_info gdb/gdbcont gdb/gdbsend gen_eth_addr img2srec \ 10 | mkenvimage mkimage ncb proftool ubsha1 xway-swap-bytes; do 11 | cp $tool $1/usr/bin 12 | done 13 | -------------------------------------------------------------------------------- /system/uboot-tools/checksums: -------------------------------------------------------------------------------- 1 | 7716cffb3394374baf36dd2bf0ebee770310db06e8b36305c26432d9e3eb2592 2 | -------------------------------------------------------------------------------- /system/uboot-tools/depends: -------------------------------------------------------------------------------- 1 | swig make 2 | -------------------------------------------------------------------------------- /system/uboot-tools/sources: -------------------------------------------------------------------------------- 1 | https://source.denx.de/u-boot/u-boot/-/archive/v2021.07/u-boot-v2021.07.tar.gz 2 | -------------------------------------------------------------------------------- /system/uboot-tools/version: -------------------------------------------------------------------------------- 1 | 2021.07 1 2 | -------------------------------------------------------------------------------- /wayland/bemenu/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | sed -i "s/ || printf 'nogit'//" GNUmakefile 4 | 5 | make clients wayland PREFIX=/usr 6 | make PREFIX=/usr DESTDIR="$1" install 7 | -------------------------------------------------------------------------------- /wayland/bemenu/checksums: -------------------------------------------------------------------------------- 1 | 603358a039ac0014de14339d3e143dae67035cb84fa7c021563c7798064cdee8 2 | -------------------------------------------------------------------------------- /wayland/bemenu/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | freetype-harfbuzz 3 | glib 4 | libxkbcommon 5 | pango 6 | wayland 7 | -------------------------------------------------------------------------------- /wayland/bemenu/sources: -------------------------------------------------------------------------------- 1 | https://github.com/Cloudef/bemenu/releases/download/VERSION/bemenu-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/bemenu/version: -------------------------------------------------------------------------------- 1 | 0.6.14 1 2 | -------------------------------------------------------------------------------- /wayland/foot/checksums: -------------------------------------------------------------------------------- 1 | 604f777fdaccfc1ee2d20376cc5688a819dcd6b7113725880cc973194fd6c737 2 | -------------------------------------------------------------------------------- /wayland/foot/depends: -------------------------------------------------------------------------------- 1 | fcft 2 | fontconfig 3 | libxkbcommon 4 | meson make 5 | ncurses make 6 | pixman 7 | pkgconf make 8 | python make 9 | tllist make 10 | wayland 11 | wayland-protocols make 12 | -------------------------------------------------------------------------------- /wayland/foot/sources: -------------------------------------------------------------------------------- 1 | https://codeberg.org/dnkl/foot/archive/1.13.1.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/foot/version: -------------------------------------------------------------------------------- 1 | 1.13.1 2 2 | -------------------------------------------------------------------------------- /wayland/grim/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --cross-file="meson.config" \ 8 | -Djpeg=disabled \ 9 | . build 10 | 11 | ninja -C build 12 | ninja -C build install 13 | -------------------------------------------------------------------------------- /wayland/grim/checksums: -------------------------------------------------------------------------------- 1 | b6786e889ed93568634189a59f6b6429c041bf74883c10e8b6e2ed6772ae7ffb 2 | -------------------------------------------------------------------------------- /wayland/grim/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | pkgconf make 3 | wayland 4 | wayland-protocols make 5 | -------------------------------------------------------------------------------- /wayland/grim/sources: -------------------------------------------------------------------------------- 1 | https://github.com/emersion/grim/releases/download/v1.4.0/grim-1.4.0.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/grim/version: -------------------------------------------------------------------------------- 1 | 1.4.0 1 2 | -------------------------------------------------------------------------------- /wayland/libdrm/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --cross-file="meson.config" \ 8 | -Dvalgrind=disabled \ 9 | . build 10 | 11 | ninja -C build 12 | ninja -C build install 13 | -------------------------------------------------------------------------------- /wayland/libdrm/checksums: -------------------------------------------------------------------------------- 1 | 554cfbfe0542bddb391b4e3e05bfbbfc3e282b955bd56218d21c0616481f65eb 2 | -------------------------------------------------------------------------------- /wayland/libdrm/depends: -------------------------------------------------------------------------------- 1 | libpciaccess 2 | linux-headers make 3 | meson make 4 | pkgconf make 5 | python-docutils make 6 | -------------------------------------------------------------------------------- /wayland/libdrm/sources: -------------------------------------------------------------------------------- 1 | https://dri.freedesktop.org/libdrm/libdrm-2.4.115.tar.xz 2 | -------------------------------------------------------------------------------- /wayland/libdrm/version: -------------------------------------------------------------------------------- 1 | 2.4.115 2 2 | -------------------------------------------------------------------------------- /wayland/libevdev/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /wayland/libevdev/checksums: -------------------------------------------------------------------------------- 1 | 9edf2006cc86a5055279647c38ec923d11a821ee4dc2c3033e8d20e8ee237cd9 2 | -------------------------------------------------------------------------------- /wayland/libevdev/sources: -------------------------------------------------------------------------------- 1 | https://freedesktop.org/software/libevdev/libevdev-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /wayland/libevdev/version: -------------------------------------------------------------------------------- 1 | 1.13.0 1 2 | -------------------------------------------------------------------------------- /wayland/libinput/checksums: -------------------------------------------------------------------------------- 1 | 45d9e03c16c3c343b7537aa7f744ae9339b1a0dae446ecbe6f5ed9d49be11e87 2 | -------------------------------------------------------------------------------- /wayland/libinput/depends: -------------------------------------------------------------------------------- 1 | libevdev 2 | libudev-zero 3 | linux-headers make 4 | meson make 5 | mtdev 6 | pkgconf make 7 | -------------------------------------------------------------------------------- /wayland/libinput/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/libinput/libinput/-/archive/VERSION/libinput-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/libinput/version: -------------------------------------------------------------------------------- 1 | 1.22.1 2 2 | -------------------------------------------------------------------------------- /wayland/libpciaccess/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE 7 | 8 | make 9 | make install 10 | -------------------------------------------------------------------------------- /wayland/libpciaccess/checksums: -------------------------------------------------------------------------------- 1 | 74283ba3c974913029e7a547496a29145b07ec51732bbb5b5c58d5025ad95b73 2 | -------------------------------------------------------------------------------- /wayland/libpciaccess/depends: -------------------------------------------------------------------------------- 1 | meson make 2 | -------------------------------------------------------------------------------- /wayland/libpciaccess/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libpciaccess-0.17.tar.xz 2 | -------------------------------------------------------------------------------- /wayland/libpciaccess/version: -------------------------------------------------------------------------------- 1 | 0.17 1 2 | -------------------------------------------------------------------------------- /wayland/libseat/checksums: -------------------------------------------------------------------------------- 1 | 210ddf8efa1149cde4dd35908bef8e9e63c2edaa0cdb5435f2e6db277fafff3c 2 | d6058fd087e2e6c9cb7957938f67eae9d2817d30548b0042748db6d1c8170481 3 | -------------------------------------------------------------------------------- /wayland/libseat/depends: -------------------------------------------------------------------------------- 1 | meson make 2 | -------------------------------------------------------------------------------- /wayland/libseat/files/seatd.run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec seatd -g video 2>&1 3 | -------------------------------------------------------------------------------- /wayland/libseat/sources: -------------------------------------------------------------------------------- 1 | https://git.sr.ht/~kennylevinsen/seatd/archive/VERSION.tar.gz 2 | files/seatd.run 3 | -------------------------------------------------------------------------------- /wayland/libseat/version: -------------------------------------------------------------------------------- 1 | 0.7.0 3 2 | -------------------------------------------------------------------------------- /wayland/libxkbcommon/checksums: -------------------------------------------------------------------------------- 1 | 560f11c4bbbca10f495f3ef7d3a6aa4ca62b4f8fb0b52e7d459d18a26e46e017 2 | -------------------------------------------------------------------------------- /wayland/libxkbcommon/depends: -------------------------------------------------------------------------------- 1 | bison make 2 | meson make 3 | pkgconf make 4 | wayland 5 | wayland-protocols 6 | wayland-protocols make 7 | xkeyboard-config 8 | -------------------------------------------------------------------------------- /wayland/libxkbcommon/sources: -------------------------------------------------------------------------------- 1 | https://xkbcommon.org/download/libxkbcommon-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /wayland/libxkbcommon/version: -------------------------------------------------------------------------------- 1 | 1.5.0 1 2 | -------------------------------------------------------------------------------- /wayland/mtdev/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --build=$KISS_XBUILD_TRIPLE \ 6 | --host=$KISS_XHOST_TRIPLE 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /wayland/mtdev/checksums: -------------------------------------------------------------------------------- 1 | 15d7b28da8ac71d8bc8c9287c2045fd174267bc740bec10cfda332dc1204e0e0 2 | 325caa596fa7aee6495bc416af6ed7d9e36b23aa2e0f6fba04cbb07838b37a27 3 | -------------------------------------------------------------------------------- /wayland/mtdev/sources: -------------------------------------------------------------------------------- 1 | https://bitmath.org/code/mtdev/mtdev-VERSION.tar.bz2 2 | files/config.sub config-aux/ 3 | -------------------------------------------------------------------------------- /wayland/mtdev/version: -------------------------------------------------------------------------------- 1 | 1.1.6 1 2 | -------------------------------------------------------------------------------- /wayland/pixman/checksums: -------------------------------------------------------------------------------- 1 | 5747d2ec498ad0f1594878cc897ef5eb6c29e91c53b899f7f71b506785fc1376 2 | -------------------------------------------------------------------------------- /wayland/pixman/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/pixman-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /wayland/pixman/version: -------------------------------------------------------------------------------- 1 | 0.42.2 1 2 | -------------------------------------------------------------------------------- /wayland/slurp/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --cross-file="meson.config" \ 8 | --buildtype=release \ 9 | . output 10 | 11 | ninja -C output 12 | ninja -C output install 13 | -------------------------------------------------------------------------------- /wayland/slurp/checksums: -------------------------------------------------------------------------------- 1 | 98f6bb692be6bd015aa6251830837ea4fd9a0c5d51ce832ad147aa62ae7f095d 2 | -------------------------------------------------------------------------------- /wayland/slurp/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | libxkbcommon 3 | linux-headers make 4 | meson make 5 | pkgconf make 6 | wayland 7 | wayland-protocols make 8 | -------------------------------------------------------------------------------- /wayland/slurp/sources: -------------------------------------------------------------------------------- 1 | https://github.com/emersion/slurp/releases/download/v1.4.0/slurp-1.4.0.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/slurp/version: -------------------------------------------------------------------------------- 1 | 1.4.0 1 2 | -------------------------------------------------------------------------------- /wayland/sway/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --cross-file="meson.config" \ 8 | -Dxwayland=disabled \ 9 | -Ddefault-wallpaper=false \ 10 | -Dzsh-completions=false \ 11 | -Dbash-completions=false \ 12 | -Dfish-completions=false \ 13 | . build 14 | 15 | ninja -C build 16 | ninja -C build install 17 | -------------------------------------------------------------------------------- /wayland/sway/checksums: -------------------------------------------------------------------------------- 1 | 73f08fd2cf7948e8af900709efe44eae412ae11c5773960e25c9aa09f73bad41 2 | c961f04501d76bc5f382915dd81acb0be837053972526762cf44eb2a953b001f 3 | -------------------------------------------------------------------------------- /wayland/sway/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | json-c 3 | libevdev 4 | libinput 5 | libseat 6 | libxkbcommon 7 | linux-headers make 8 | mesa 9 | meson make 10 | pango 11 | pcre2 12 | pixman 13 | pkgconf make 14 | wayland 15 | wayland-protocols make 16 | wlroots 17 | -------------------------------------------------------------------------------- /wayland/sway/sources: -------------------------------------------------------------------------------- 1 | https://github.com/swaywm/sway/releases/download/VERSION/sway-VERSION.tar.gz 2 | patches/no-evdev.patch 3 | -------------------------------------------------------------------------------- /wayland/sway/version: -------------------------------------------------------------------------------- 1 | 1.8.1 1 2 | -------------------------------------------------------------------------------- /wayland/swayidle/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --cross-file="meson.config" \ 8 | . build 9 | 10 | ninja -C build 11 | ninja -C build install 12 | 13 | rm -rf "$1/usr/share/zsh/" 14 | rm -rf "$1/usr/share/fish/" 15 | rm -rf "$1/usr/share/bash-completion/" 16 | -------------------------------------------------------------------------------- /wayland/swayidle/checksums: -------------------------------------------------------------------------------- 1 | 16b3e76a117f2f0ff2ee5fbebf38849595cdd705db1cd5f6aceaed00d71b3aa1 2 | -------------------------------------------------------------------------------- /wayland/swayidle/depends: -------------------------------------------------------------------------------- 1 | wayland 2 | wayland make 3 | -------------------------------------------------------------------------------- /wayland/swayidle/sources: -------------------------------------------------------------------------------- 1 | https://github.com/swaywm/swayidle/releases/download/VERSION/swayidle-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/swayidle/version: -------------------------------------------------------------------------------- 1 | 1.8.0 1 2 | -------------------------------------------------------------------------------- /wayland/swaylock-effects/checksums: -------------------------------------------------------------------------------- 1 | 44804d1d9dff189d1b113e44b75f68eb9fc6cf76eb4638658496ad50903cb7b9 2 | -------------------------------------------------------------------------------- /wayland/swaylock-effects/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | gdk-pixbuf 3 | glib 4 | libxkbcommon 5 | llvm 6 | wayland 7 | wayland make 8 | -------------------------------------------------------------------------------- /wayland/swaylock-effects/sources: -------------------------------------------------------------------------------- 1 | https://github.com/jirutka/swaylock-effects/archive/refs/tags/vVERSION.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/swaylock-effects/version: -------------------------------------------------------------------------------- 1 | 1.6.11 1 2 | -------------------------------------------------------------------------------- /wayland/swaylock/checksums: -------------------------------------------------------------------------------- 1 | bf965d47fb6fc1402f854d4679d21a9459713fc0f330bc607c9585db097b4304 2 | -------------------------------------------------------------------------------- /wayland/swaylock/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | gdk-pixbuf 3 | glib 4 | libxkbcommon 5 | wayland 6 | wayland make 7 | -------------------------------------------------------------------------------- /wayland/swaylock/sources: -------------------------------------------------------------------------------- 1 | https://github.com/swaywm/swaylock/releases/download/vVERSION/swaylock-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/swaylock/version: -------------------------------------------------------------------------------- 1 | 1.7.2 1 2 | -------------------------------------------------------------------------------- /wayland/wayland-protocols/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --cross-file="meson.config" \ 8 | --buildtype=release \ 9 | -Dtests=false \ 10 | . output 11 | 12 | ninja -C output 13 | ninja -C output install 14 | 15 | -------------------------------------------------------------------------------- /wayland/wayland-protocols/checksums: -------------------------------------------------------------------------------- 1 | a07fa722ed87676ec020d867714bc9a2f24c464da73912f39706eeef5219e238 2 | -------------------------------------------------------------------------------- /wayland/wayland-protocols/depends: -------------------------------------------------------------------------------- 1 | meson make 2 | wayland make 3 | -------------------------------------------------------------------------------- /wayland/wayland-protocols/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/wayland/wayland-protocols/-/releases/VERSION/downloads/wayland-protocols-VERSION.tar.xz 2 | -------------------------------------------------------------------------------- /wayland/wayland-protocols/version: -------------------------------------------------------------------------------- 1 | 1.31 1 2 | -------------------------------------------------------------------------------- /wayland/wayland/checksums: -------------------------------------------------------------------------------- 1 | 6dc64d7fc16837a693a51cfdb2e568db538bfdc9f457d4656285bb9594ef11ac 2 | f19cb11d90948609904068637801ded6eefa1c8d3f1f7620387f929fc9e47d68 3 | -------------------------------------------------------------------------------- /wayland/wayland/depends: -------------------------------------------------------------------------------- 1 | expat 2 | flex make 3 | libffi 4 | meson make 5 | pkgconf make 6 | -------------------------------------------------------------------------------- /wayland/wayland/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/wayland/wayland/-/releases/1.21.0/downloads/wayland-1.21.0.tar.xz 2 | patches/cross.patch 3 | -------------------------------------------------------------------------------- /wayland/wayland/version: -------------------------------------------------------------------------------- 1 | 1.21.0 1 2 | -------------------------------------------------------------------------------- /wayland/wbg/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export PKG_CONFIG_SYSROOT_DIR= 4 | 5 | kiss-meson-config > meson.config 6 | 7 | meson \ 8 | --prefix=/usr \ 9 | --cross-file="meson.config" \ 10 | --buildtype=release \ 11 | --force-fallback-for=tllist \ 12 | -Djpeg=enabled \ 13 | -Dpng=enabled \ 14 | . output 15 | 16 | ninja -C output 17 | ninja -C output install 18 | -------------------------------------------------------------------------------- /wayland/wbg/checksums: -------------------------------------------------------------------------------- 1 | 3f7844914c8a53fababa5df3575a9adb06026932bdd359664077ffdf19aae917 2 | -------------------------------------------------------------------------------- /wayland/wbg/depends: -------------------------------------------------------------------------------- 1 | libjpeg-turbo 2 | libpng 3 | meson make 4 | pixman 5 | tllist make 6 | wayland 7 | wayland-protocols make 8 | -------------------------------------------------------------------------------- /wayland/wbg/sources: -------------------------------------------------------------------------------- 1 | https://codeberg.org/dnkl/wbg/archive/1.1.0.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/wbg/version: -------------------------------------------------------------------------------- 1 | 1.1.0 1 2 | -------------------------------------------------------------------------------- /wayland/wlr-randr/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --cross-file="meson.config" \ 8 | . output 9 | 10 | ninja -C output 11 | ninja -C output install 12 | -------------------------------------------------------------------------------- /wayland/wlr-randr/checksums: -------------------------------------------------------------------------------- 1 | 1796008aa2ff272803f008cf71c4336553a4e48f519c76b0c65ab169ad71cdad 2 | -------------------------------------------------------------------------------- /wayland/wlr-randr/depends: -------------------------------------------------------------------------------- 1 | wayland 2 | -------------------------------------------------------------------------------- /wayland/wlr-randr/sources: -------------------------------------------------------------------------------- 1 | https://git.sr.ht/~emersion/wlr-randr/refs/download/vVERSION/wlr-randr-VERSION.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/wlr-randr/version: -------------------------------------------------------------------------------- 1 | 0.3.0 1 2 | -------------------------------------------------------------------------------- /wayland/wlroots/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | patch -p1 < cross.patch 4 | 5 | kiss-meson-config > meson.config 6 | 7 | meson \ 8 | --prefix=/usr \ 9 | --cross-file="meson.config" \ 10 | -Ddefault_library=both \ 11 | -Dexamples=false \ 12 | -Dxcb-errors=disabled \ 13 | . build 14 | 15 | ninja -C build 16 | ninja -C build install 17 | -------------------------------------------------------------------------------- /wayland/wlroots/checksums: -------------------------------------------------------------------------------- 1 | afea2cc740344c4e86749cf4908e07692e183cb14a3db854d24dec454c664b88 2 | 86c092835d293d62f46a5c37fa151f85a77e4698fdaf72d32dc43b8a05253b12 3 | -------------------------------------------------------------------------------- /wayland/wlroots/depends: -------------------------------------------------------------------------------- 1 | flex make 2 | libdrm 3 | libglvnd 4 | libinput 5 | libseat 6 | libudev-zero 7 | libxkbcommon 8 | linux-headers make 9 | mesa 10 | meson make 11 | pixman 12 | wayland 13 | wayland-protocols make 14 | -------------------------------------------------------------------------------- /wayland/wlroots/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/wlroots/wlroots/-/archive/VERSION/wlroots-VERSION.tar.bz2 2 | patches/cross.patch 3 | -------------------------------------------------------------------------------- /wayland/wlroots/version: -------------------------------------------------------------------------------- 1 | 0.16.2 1 2 | -------------------------------------------------------------------------------- /wayland/wlsunset/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | kiss-meson-config > meson.config 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --cross-file="meson.config" \ 8 | --buildtype=release \ 9 | . output 10 | 11 | ninja -C output 12 | ninja -C output install 13 | -------------------------------------------------------------------------------- /wayland/wlsunset/checksums: -------------------------------------------------------------------------------- 1 | 88bce695722a09d79545f14d404cc0659f7176bb08d5db5f4f23228b6ba8bb03 2 | -------------------------------------------------------------------------------- /wayland/wlsunset/depends: -------------------------------------------------------------------------------- 1 | meson make 2 | wayland 3 | wayland-protocols make 4 | -------------------------------------------------------------------------------- /wayland/wlsunset/sources: -------------------------------------------------------------------------------- 1 | https://git.sr.ht/~kennylevinsen/wlsunset/archive/0.2.0.tar.gz 2 | -------------------------------------------------------------------------------- /wayland/wlsunset/version: -------------------------------------------------------------------------------- 1 | 0.2.0 1 2 | -------------------------------------------------------------------------------- /wayland/wvkbd/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | patch -p1 < ppp.patch 4 | 5 | make 6 | 7 | mkdir -p $1/usr/bin 8 | cp wvkbd-mobintl $1/usr/bin 9 | -------------------------------------------------------------------------------- /wayland/wvkbd/checksums: -------------------------------------------------------------------------------- 1 | 120790593691209f5cf141f6c693a7f07eed78ba8dd1f43d5c221cb751491e18 2 | -------------------------------------------------------------------------------- /wayland/wvkbd/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/jjsullivan5196/wvkbd.git#a2b5b78051c5da30045af756aef8f52ff309fc43 2 | patches/ppp.patch 3 | -------------------------------------------------------------------------------- /wayland/wvkbd/version: -------------------------------------------------------------------------------- 1 | 0.12 1 2 | -------------------------------------------------------------------------------- /wayland/xkeyboard-config/checksums: -------------------------------------------------------------------------------- 1 | 0690a91bab86b18868f3eee6d41e9ec4ce6894f655443d490a2184bfac56c872 2 | 355999ad6dc3fae3e8fbc939a803faaed91f45d778326395dee9780836140c4a 3 | -------------------------------------------------------------------------------- /wayland/xkeyboard-config/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/data/xkeyboard-config/xkeyboard-config-VERSION.tar.xz 2 | files/xml2lst rules 3 | -------------------------------------------------------------------------------- /wayland/xkeyboard-config/version: -------------------------------------------------------------------------------- 1 | 2.38 1 2 | --------------------------------------------------------------------------------