Date: Thursday, November 17, 2022 @ 17:46:13
Author: heftig
Revision: 1349384
archrelease: copy trunk to multilib-x86_64
Added:
lib32-dconf/repos/multilib-x86_64/PKGBUILD
(from rev 1349383, lib32-dconf/trunk/PKGBUILD)
Deleted:
lib32-dconf/repos/multilib-x86_64/PKGBUILD
----------+
PKGBUILD | 101 +++++++++++++++++++++++++++++++------------------------------
1 file changed, 52 insertions(+), 49 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-11-17 17:45:58 UTC (rev 1349383)
+++ PKGBUILD 2022-11-17 17:46:13 UTC (rev 1349384)
@@ -1,49 +0,0 @@
-# Maintainer: Maxime Gauduin <[email protected]>
-# Maintainer: jtts <[email protected]>
-# Contributor: Ionut Biru <[email protected]>
-
-pkgname=lib32-dconf
-pkgver=0.40.0
-pkgrel=2
-pkgdesc='A low-level configuration system'
-arch=(x86_64)
-url=https://live.gnome.org/dconf
-license=(LGPL2.1)
-depends=(
- dconf
- lib32-glib2
-)
-makedepends=(
- bash-completion
- docbook-xsl
- git
- intltool
- meson
- python
- vala
-)
-_tag=4c0a26052efafae923eba42d14c5cb88da745de2
-source=(git+https://gitlab.gnome.org/GNOME/dconf.git#tag=${_tag})
-sha256sums=(SKIP)
-
-pkgver() {
- cd dconf
-
- git describe --tags
-}
-
-build() {
- export CC='gcc -m32'
- export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
- arch-meson dconf build \
- --libdir=/usr/lib32
- ninja -C build
-}
-
-package() {
- DESTDIR="${pkgdir}" ninja -C build install
- rm -rf "${pkgdir}"/usr/{bin,include,lib,share}
-}
-
-# vim: ts=2 sw=2 et:
Copied: lib32-dconf/repos/multilib-x86_64/PKGBUILD (from rev 1349383,
lib32-dconf/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-11-17 17:46:13 UTC (rev 1349384)
@@ -0,0 +1,52 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Maintainer: jtts <[email protected]>
+# Contributor: Ionut Biru <[email protected]>
+
+pkgname=lib32-dconf
+pkgver=0.40.0
+pkgrel=3
+pkgdesc='A low-level configuration system (32-bit)'
+arch=(x86_64)
+url=https://live.gnome.org/dconf
+license=(LGPL2.1)
+depends=(
+ dconf
+ lib32-glib2
+)
+makedepends=(
+ git
+ lib32-dbus
+ meson
+)
+options=(debug)
+_tag=4c0a26052efafae923eba42d14c5cb88da745de2
+source=(git+https://gitlab.gnome.org/GNOME/dconf.git#tag=${_tag})
+sha256sums=('SKIP')
+
+pkgver() {
+ cd dconf
+
+ git describe --tags
+}
+
+build() {
+ local meson_options=(
+ --libdir=/usr/lib32
+ -D bash_completion=false
+ -D man=false
+ -D vapi=false
+ )
+
+ export CC='gcc -m32'
+ export PKG_CONFIG=i686-pc-linux-gnu-pkg-config
+
+ arch-meson dconf build "${meson_options[@]}"
+ meson compile -C build
+}
+
+package() {
+ meson install -C build --destdir "${pkgdir}"
+ rm -rf "${pkgdir}"/usr/{bin,include,lib,share}
+}
+
+# vim:set sw=2 sts=-1 et: