# Maintainer: Yurii Kolesnykov # Based on multilib/lib32-systemd by: # Maintainer: Christian Hesse # Maintainer: Dave Reisner # Maintainer: Tom Gundersen pkgname=lib32-systemd-git _pkgname=lib32-systemd _pkgbasename=systemd pkgver=247.r147.g6dd16814a5 pkgrel=1 pkgdesc='system and service manager (32-bit, git version)' arch=('x86_64') url='https://www.github.com/systemd/systemd' license=('GPL2' 'LGPL2.1') depends=('lib32-gcc-libs' 'lib32-libcap' 'lib32-libgcrypt' 'lib32-libxcrypt' 'lib32-xz' 'lib32-zstd' 'systemd-git') provides=("$_pkgname") conflicts=("$_pkgname") makedepends=('git' 'gperf' 'intltool' 'lib32-acl' 'lib32-bzip2' 'lib32-curl' 'lib32-dbus' 'lib32-gcc-libs' 'lib32-glib2' 'lib32-gnutls' 'lib32-libelf' 'lib32-libidn2' 'lib32-pcre2' 'libxslt' 'meson') options=('strip') source=('git+https://github.com/systemd/systemd') sha512sums=('SKIP') pkgver() { cd "$_pkgbasename" # cutting off 'v' prefix that presents in the git tag git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' } build() { export CC="gcc -m32" export CXX="g++ -m32" export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" local _timeservers=({0..3}.arch.pool.ntp.org) local _nameservers=( # We use these public name services, ordered by their # privacy policy (hopefully): # * Cloudflare (https://1.1.1.1/) # * Quad9 without filtering (https://www.quad9.net/) # * Google (https://developers.google.com/speed/public-dns/) 1.1.1.1 9.9.9.10 8.8.8.8 2606:4700:4700::1111 2620:fe::10 2001:4860:4860::8888 ) local _meson_options=( --libexecdir /usr/lib32 --libdir /usr/lib32 -Dversion-tag="${pkgver}-${pkgrel}-arch" -Dmode=release -Daudit=false -Dblkid=false -Dgnu-efi=false -Dhtml=false -Dima=false -Dkmod=false -Dlibcryptsetup=false -Dlibidn2=true -Dlibiptc=false -Dlz4=false -Dman=false -Dmanpages=false -Dmicrohttpd=false -Dnetworkd=false -Dpam=false -Dpython=false -Drepart=false -Dseccomp=false -Ddbuspolicydir=/usr/share/dbus-1/system.d -Ddefault-hierarchy=hybrid -Ddefault-kill-user-processes=false -Ddefault-locale=C -Dfallback-hostname='archlinux' -Dnologin-path=/usr/bin/nologin -Dntp-servers="${_timeservers[*]}" -Ddns-servers="${_nameservers[*]}" -Drpmmacrosdir=no -Dsysvinit-path= -Dsysvrcnd-path= ) arch-meson "${_pkgbasename}" build "${_meson_options[@]}" ninja -C build } check() { meson test -C build } package() { DESTDIR="$pkgdir" ninja -C build install rm -rf "${pkgdir}"/{etc,var} rm -rf "${pkgdir}"/usr/{bin,include,lib,share} }