Added a bunch of packages.
This commit is contained in:
parent
f90c368a27
commit
c99d4b6a8e
@ -1 +0,0 @@
|
||||
https://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/epic5-2.1.2.tar.xz
|
@ -1,3 +0,0 @@
|
||||
http://dist.schmorp.de/rxvt-unicode/rxvt-unicode-9.26.tar.bz2
|
||||
patches/gentables.patch
|
||||
patches/rxvt-unicode-kerning.patch
|
@ -1 +0,0 @@
|
||||
https://ftp.gnu.org/gnu/binutils/binutils-2.36.1.tar.xz
|
@ -1 +0,0 @@
|
||||
2.36.1 1
|
@ -1 +0,0 @@
|
||||
https://ftp.gnu.org/gnu/bison/bison-3.8.tar.xz
|
@ -1 +0,0 @@
|
||||
3.8 2
|
@ -1 +0,0 @@
|
||||
https://curl.haxx.se/download/curl-7.77.0.tar.xz
|
@ -1 +0,0 @@
|
||||
7.77.0 1
|
@ -1 +0,0 @@
|
||||
https://ftp.gnu.org/gnu/diffutils/diffutils-3.7.tar.xz
|
@ -1 +0,0 @@
|
||||
3.7 1
|
@ -1 +0,0 @@
|
||||
https://ftp.gnu.org/gnu/grep/grep-3.6.tar.xz
|
@ -1 +0,0 @@
|
||||
3.6 1
|
@ -1 +0,0 @@
|
||||
https://www.greenwoodsoftware.com/less/less-569.tar.gz
|
@ -1 +0,0 @@
|
||||
563 1
|
@ -1 +0,0 @@
|
||||
https://github.com/libarchive/libarchive/releases/download/3.5.2/libarchive-3.5.2.tar.xz
|
@ -1 +0,0 @@
|
||||
3.5.1 1
|
@ -1 +0,0 @@
|
||||
3.3.3 1
|
@ -1,22 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
patch -p1 < mandoc-no-warn.patch
|
||||
|
||||
sed -i '/int dummy/d' ./compat_*.c
|
||||
sed -i 's,"more -s","less",g' main.c
|
||||
sed -i "s/CC=.*/CC='$CC'/" configure
|
||||
|
||||
cat > configure.local <<EOF
|
||||
PREFIX=/usr
|
||||
MANDIR=/usr/share/man
|
||||
LIBDIR=/usr/lib
|
||||
SBINDIR=/usr/bin
|
||||
CC="${CC:-cc}"
|
||||
CFLAGS="$CFLAGS"
|
||||
LN="ln -sf"
|
||||
EOF
|
||||
|
||||
./configure
|
||||
|
||||
make
|
||||
make -j1 DESTDIR="$1" base-install
|
@ -1,2 +0,0 @@
|
||||
https://fossies.org/linux/misc/mandoc-1.14.6.tar.gz
|
||||
patches/mandoc-no-warn.patch
|
@ -1 +0,0 @@
|
||||
1.14.5 4
|
@ -1 +0,0 @@
|
||||
5.12.0 1
|
@ -1,14 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
export DESTDIR="$1"
|
||||
export CFLAGS="$CFLAGS -D_POSIX_C_SOURCE=200809L"
|
||||
|
||||
cmake -B build \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DUSE_XPM=ON \
|
||||
-DUSE_EWMH=TRUE
|
||||
|
||||
cmake --build build
|
||||
cmake --install build
|
@ -1,10 +0,0 @@
|
||||
cmake make
|
||||
libICE
|
||||
libSM
|
||||
libX11
|
||||
libXau
|
||||
libXext
|
||||
libXmu
|
||||
libXpm
|
||||
libXt
|
||||
libjpeg-turbo
|
@ -1 +0,0 @@
|
||||
https://www.ctwm.org/dist/ctwm-4.0.3.tar.xz
|
@ -1,51 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--with-modules \
|
||||
--with-xft \
|
||||
--with-x-toolkit=gtk2 \
|
||||
--without-dbus \
|
||||
--without-gconf \
|
||||
--without-gsettings \
|
||||
--with-xpm=yes \
|
||||
--with-gnutls=yes \
|
||||
--with-json=yes \
|
||||
--with-native-compilation
|
||||
|
||||
mkdir -p "$1/usr/share/emacs/site-lisp"
|
||||
cat << EOF > "$1/usr/share/emacs/site-lisp/site-start.el"
|
||||
|
||||
;; Better security defaults
|
||||
(with-eval-after-load 'gnutls
|
||||
(setq
|
||||
gnutls-verify-error t
|
||||
gnutls-min-prime-bits 2048
|
||||
gnutls-trustfiles '("/etc/ssl/cert.pem")))
|
||||
|
||||
;; Needed unless KISS Linux gains librsvg support
|
||||
(setq-default shr-blocked-images ".*\.svg$")
|
||||
|
||||
;; Augment ELPA.
|
||||
(require 'package)
|
||||
(add-to-list 'package-archives
|
||||
'("melpa-stable" . "https://stable.melpa.org/packages/")
|
||||
'("melpa-unstable" . "https://melpa.org/packages/"))
|
||||
|
||||
;; Increase garbage collection during startup. Reduces boot times.
|
||||
(setq startup/gc-cons-threshold gc-cons-threshold)
|
||||
(setq gc-cons-threshold most-positive-fixnum)
|
||||
(defun startup/reset-gc () (setq gc-cons-threshold startup/gc-cons-threshold))
|
||||
(add-hook 'emacs-startup-hook 'startup/reset-gc)
|
||||
|
||||
;; Native-compile packages.
|
||||
(setq package-native-compile t)
|
||||
|
||||
EOF
|
||||
|
||||
|
||||
# Natively compile all the things!
|
||||
make NATIVE_FULL_AOT=1
|
||||
make DESTDIR="$1" install
|
||||
|
||||
rm -rf "$1/usr/lib/systemd"
|
@ -1,10 +0,0 @@
|
||||
gtk+2
|
||||
giflib
|
||||
gnutls
|
||||
libjpeg-turbo
|
||||
libpng
|
||||
libxml2
|
||||
ncurses
|
||||
tiff
|
||||
zlib
|
||||
libXpm
|
@ -1,14 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
# Workaround.
|
||||
for dir in /usr/bin /usr/share/man/ /etc/X11/ /etc/X11/app-defaults
|
||||
do
|
||||
mkdir -p "$1/$dir"
|
||||
done
|
||||
|
||||
make
|
||||
make PREFIX="$1/usr" MANDIR="$1/usr/share/man/" MWMRCDIR="$1/etc/X11/mwm" install
|
||||
|
||||
#install -Dm755 emwm "$1/usr/bin/emwm"
|
||||
#install -Dm644 system.mwmrc "$1/usr/etc/X11/mwm/system.emwmrc"
|
||||
#install -Dm644 emwm.1 "$1/usr/share/man/man1/emwm.1"
|
@ -1,6 +0,0 @@
|
||||
libX11
|
||||
libXrandr
|
||||
libXinerama
|
||||
libXext
|
||||
libXt
|
||||
motif
|
@ -1 +0,0 @@
|
||||
http://fastestcode.org/dl/emwm-src.tar.xz
|
@ -1 +0,0 @@
|
||||
git 1
|
@ -1,7 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
./configure \
|
||||
--prefix=/usry
|
||||
|
||||
make
|
||||
make DESTDIR="$1" install
|
@ -1,3 +0,0 @@
|
||||
lzip make
|
||||
cmake make
|
||||
libX11
|
@ -1,4 +0,0 @@
|
||||
https://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-3.10.tar.gz
|
||||
httpss://cpan.metacpan.org/authors/id/G/GA/GAAS/HTML-Parser-3.72.tar.gz html-parser
|
||||
httpss://cpan.metacpan.org/authors/id/P/PE/PETDANCE/HTML-Tagset-3.20.tar.gz html-tagset
|
||||
httpss://raw.githubusercontent.com/vim/vim/v8.2.1158/src/xxd/xxd.c xxd
|
@ -1,6 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
make
|
||||
|
||||
install -Dm755 picocom "$1/usr/bin/picocom"
|
||||
install -Dm644 picocom.1 "$1/usr/share/man/man.1/picocom.1"
|
Loading…
Reference in New Issue
Block a user