Compare commits

...
2 Commits
Author SHA1 Message Date
wyj 128c0f7d12 update to 12.4-systemd: man-db-2.13.1 2025-12-22 06:04:28 -05:00
wyj 8e24565f2c update to 12.4-systemd: dbus-1.16.2 2025-12-22 05:52:05 -05:00
2 changed files with 67 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
pkgname="dbus"
pkgver="1.16.2"
pkgdesc="Freedesktop.org message bus system"
homepage="https://www.freedesktop.org/wiki/Software/dbus"
sources=("${pkgname}-${pkgver}.tar.xz")
urls=("https://dbus.freedesktop.org/releases/${pkgname}/${sources[0]}")
md5sums=("97832e6f0a260936d28536e5349c22e5")
src_prepare() {
tar -xf ${distdir}/${sources[0]} --strip-components=1
}
src_build() {
mkdir build
cd build
meson setup --prefix=/usr --buildtype=release --wrap-mode=nofallback ..
ninja
cd ..
}
src_check() {
pushd build
ninja test
popd
}
src_install() {
pushd build
DESTDIR=$pkgdir ninja install
install -d -v -m755 ${pkgdir}/var/lib/dbus
ln -sfv ../../../etc/machine-id ${pkgdir}/var/lib/dbus
popd
}
+33
View File
@@ -0,0 +1,33 @@
pkgname="man-db"
pkgver="2.13.1"
pkgdesc="A utility for reading man pages"
arch=("x86_64")
homepage="https://www.nongnu.org/man-db/"
lisence=('GPL-2.0-or-later AND GPL-3.0-or-later')
sources=("${pkgname}-${pkgver}.tar.xz")
urls=("https://download.savannah.gnu.org/releases/${pkgname}/${sources[0]}")
md5sums=("b6335533cbeac3b24cd7be31fdee8c83")
src_prepare() {
tar -xf ${distdir}/${sources[0]} --strip-components=1
}
src_build() {
./configure --prefix=/usr \
--docdir=/usr/share/doc/man-db-${pkgver} \
--sysconfdir=/etc \
--disable-setuid \
--enable-cache-owner=bin \
--with-browser=/usr/bin/lynx \
--with-vgrind=/usr/bin/vgrind \
--with-grap=/usr/bin/grap
make
}
src_check() {
make check
}
src_install() {
make DESTDIR="${pkgdir}" install
}