Compare commits
2
Commits
774901cb89
...
128c0f7d12
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
128c0f7d12 | ||
|
|
8e24565f2c |
@@ -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
|
||||
}
|
||||
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user