diff options
Diffstat (limited to 'repo/system')
-rw-r--r-- | repo/system/elogind.xibuild | 5 | ||||
-rw-r--r-- | repo/system/icu.xibuild | 20 | ||||
-rw-r--r-- | repo/system/js78.xibuild | 42 | ||||
-rw-r--r-- | repo/system/libssh2.xibuild | 20 | ||||
-rw-r--r-- | repo/system/polkit.xibuild | 57 |
5 files changed, 142 insertions, 2 deletions
diff --git a/repo/system/elogind.xibuild b/repo/system/elogind.xibuild index b15fe4a..81cdaea 100644 --- a/repo/system/elogind.xibuild +++ b/repo/system/elogind.xibuild @@ -1,6 +1,6 @@ #!/bin/bash -MAKEDEPS=(make docbook-xml docbook-xsl docbook-dtd libxslt) +MAKEDEPS=(make docbook4-xml docbook-xsl docbook-dtd libxslt) DEPS=(pam polkit) PKG_VER=246.10 @@ -15,11 +15,12 @@ build () { mkdir build && cd build && + # TODO re-enable BUILD_MANS meson --prefix=/usr \ --buildtype=release \ -Dcgroup-controller=elogind \ -Ddbuspolicydir=/etc/dbus-1/system.d \ - -Dman=auto \ + -DBUILD_MANS=false \ .. && ninja } diff --git a/repo/system/icu.xibuild b/repo/system/icu.xibuild new file mode 100644 index 0000000..be85b1e --- /dev/null +++ b/repo/system/icu.xibuild @@ -0,0 +1,20 @@ +#!/bin/bash + +MAKEDEPS=(python) +DEPS=(bash) + +PKG_VER=70.1 +SOURCE=https://github.com/unicode-org/icu/releases/download/release-$(echo $PKG_VER | sed 's/\./-/g')/icu4c-$(echo $PKG_VER | sed 's/\./_/g')-src.tgz +DESC="International Components for Unicode library" + +build () { + cd source && + + ./configure --prefix=/usr && + make + +} + +package () { + make DESTDIR=$PKG_DEST install +} diff --git a/repo/system/js78.xibuild b/repo/system/js78.xibuild new file mode 100644 index 0000000..5fe32a6 --- /dev/null +++ b/repo/system/js78.xibuild @@ -0,0 +1,42 @@ +#!/bin/bash + +MAKEDEPS=(gcc autoconf icu rustc which zip) +DEPS=(readline bash zlib) + +PKG_VER=78.15.0 +SOURCE=https://archive.mozilla.org/pub/firefox/releases/${PKG_VER}esr/source/firefox-${PKG_VER}esr.source.tar.xz +ADDITIONAL=( + https://www.linuxfromscratch.org/patches/blfs/svn/js-$PKG_VER-python_3_10-1.patch + ) + +DESC="JavaScript interpreter and libraries - Version 78 +" + +prepare () { + patch -Np1 -i js-$PKG_VER-python_3_10-1.patch + + mountpoint -q /dev/shm || mount -t tmpfs devshm /dev/shm + +} + +build () { + mkdir obj && + cd obj && + + CC=gcc CXX=g++ \ + ../js/src/configure --prefix=/usr \ + --with-intl-api \ + --with-system-zlib \ + --with-system-icu \ + --disable-jemalloc \ + --disable-debug-symbols \ + --enable-readline && + make + +} + +package () { + make DESTDIR=$PKG_DEST install && + rm -v $PKG_VER/usr/lib/libjs_static.ajs && + sed -i '/@NSPR_CFLAGS@/d' $PKG_VER/usr/bin/js78-config +} diff --git a/repo/system/libssh2.xibuild b/repo/system/libssh2.xibuild new file mode 100644 index 0000000..086b686 --- /dev/null +++ b/repo/system/libssh2.xibuild @@ -0,0 +1,20 @@ +#!/bin/bash + +MAKEDEPS=(make) +DEPS=(openssl openssh libgcrypt zlib) + +PKG_VER=1.10.0 +SOURCE=https://www.libssh2.org/download/libssh2-$PKG_VER.tar.gz +DESC="A client-side C library implementing the SSH2 protocol" + +prepare () { + ./configure --prefix=/usr --disable-static +} + +build () { + make +} + +package () { + make DESTDIR=$PKG_DEST install +} diff --git a/repo/system/polkit.xibuild b/repo/system/polkit.xibuild new file mode 100644 index 0000000..00547b0 --- /dev/null +++ b/repo/system/polkit.xibuild @@ -0,0 +1,57 @@ +#!/bin/bash + +MAKEDEPS=(git gobject-introspection meson libxslt) +DEPS=(expat glib js78 pam) + +PKG_VER=0.120 +SOURCE=https://www.freedesktop.org/software/polkit/releases/polkit-$PKG_VER.tar.gz +ADDITIONAL=( + https://www.linuxfromscratch.org/patches/blfs/svn/polkit-$PKG_VER-security_fix-1.patch + ) + +DESC="Application development toolkit for controlling system-wide privileges" + +prepare () { + sed '/0,/s/^/#/' -i meson_post_install.py && + sed '/policy,/d' -i actions/meson.build \ + -i src/examples/meson.build + + patch -Np1 -i polkit-$PKG_VE-security_fix-1.patch + +} + +build () { + mkdir build && + cd build && + + meson --prefix=/usr \ + -Dman=true \ + -Dsession_tracking=libelogind \ + -Dsystemdsystemunitdir=/tmp \ + --buildtype=release \ + .. && + ninja +} + +package () { + DESTDIR=$PKG_DEST ninja install && + + + cat > $PKG_DEST/etc/pam.d/polkit-1 << "EOF" +# Begin /etc/pam.d/polkit-1 + +auth include system-auth +account include system-account +password include system-password +session include system-session + +# End /etc/pam.d/polkit-1 +EOF + +} + +postinstall() { + groupadd -fg 27 polkitd && + useradd -c "PolicyKit Daemon Owner" -d /etc/polkit-1 -u 27 \ + -g polkitd -s /bin/false polkitd +} |