[arch-commits] Commit in lib32-dconf/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

Maxime Gauduin alucryd at archlinux.org
Tue Apr 10 09:43:43 UTC 2018


    Date: Tuesday, April 10, 2018 @ 09:43:42
  Author: alucryd
Revision: 315549

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-dconf/repos/multilib-x86_64/PKGBUILD
    (from rev 315548, lib32-dconf/trunk/PKGBUILD)
Deleted:
  lib32-dconf/repos/multilib-x86_64/PKGBUILD

----------+
 PKGBUILD |   94 +++++++++++++++++++++++++++++--------------------------------
 1 file changed, 46 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-04-10 09:43:31 UTC (rev 315548)
+++ PKGBUILD	2018-04-10 09:43:42 UTC (rev 315549)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
-# Maintainer: jtts <jussaar at mbnet.fi>
-# Contributor: Ionut Biru <ibiru at archlinux.org>
-
-pkgname=lib32-dconf
-pkgver=0.26.1
-pkgrel=1
-pkgdesc='A low-level configuration system'
-arch=('x86_64')
-url='https://live.gnome.org/dconf'
-license=('LGPL2.1')
-depends=('dconf' 'lib32-glib2')
-makedepends=('docbook-xsl' 'gcc-multilib' 'intltool' 'python' 'vala')
-source=("https://download.gnome.org/sources/dconf/${pkgver%.*}/dconf-${pkgver}.tar.xz")
-sha256sums=('d583b1f7fc93b879e2956acc6a26ea05a445a0002158aeef80c8e378e1414535')
-
-prepare() {
-  cd dconf-${pkgver}
-
-  sed 's/ editor//g' -i Makefile.in
-}
-
-build() {
-  cd dconf-${pkgver}
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure \
-    --prefix='/usr' \
-    --libdir='/usr/lib32' \
-    --libexecdir='/usr/lib32/dconf' \
-    --disable-editor \
-    --disable-gtk-doc-html \
-    --disable-man
-  make
-}
-
-package() {
-  cd dconf-${pkgver}
-
-  make completiondir='/usr/share/bash-completion/completions' DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{bin,include,share}
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-dconf/repos/multilib-x86_64/PKGBUILD (from rev 315548, lib32-dconf/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-04-10 09:43:42 UTC (rev 315549)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Maintainer: jtts <jussaar at mbnet.fi>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+
+pkgname=lib32-dconf
+pkgver=0.28.0
+pkgrel=1
+pkgdesc='A low-level configuration system'
+arch=('x86_64')
+url='https://live.gnome.org/dconf'
+license=('LGPL2.1')
+depends=('dconf' 'lib32-glib2')
+makedepends=('docbook-xsl' 'gcc-multilib' 'intltool' 'meson' 'python' 'vala')
+source=("https://download.gnome.org/sources/dconf/${pkgver%.*}/dconf-${pkgver}.tar.xz")
+sha256sums=('61d3b3865ef58b729c3b39aa0979f886c014aa8362f93dcfc74bf5648ed9c742')
+
+prepare() {
+  if [[ -d build ]]; then
+    rm -rf build
+  fi
+  mkdir build
+}
+
+build() {
+  cd build
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  arch-meson ../dconf-${pkgver} \
+    --libdir='/usr/lib32' \
+    --libexecdir='/usr/lib32/dconf' \
+    -Denable-man=false
+  ninja
+}
+
+package() {
+  cd build
+
+  DESTDIR="${pkgdir}" ninja install
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list