Skip to content
Snippets Groups Projects
Commit ca8f5801 authored by Maxime Gauduin's avatar Maxime Gauduin
Browse files

Add lib32-gtk3 and deps

parents
No related branches found
No related tags found
No related merge requests found
PKGBUILD 0 → 100755
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
# Maintainer: jtts <jussaar@mbnet.fi>
# Contributor: Ionut Biru <ibiru@archlinux.org>
pkgname=lib32-dconf
pkgver=0.24.0
pkgrel=1
pkgdesc='A low-level configuration system'
arch=('x86_64')
url='http://live.gnome.org/dconf'
license=('LGPL2.1')
depends=('dconf' 'lib32-glib2' 'lib32-libdbus')
makedepends=('docbook-xsl' 'gcc-multilib' 'intltool' 'python2' 'vala')
install='dconf.install'
source=("http://download.gnome.org/sources/dconf/${pkgver%.*}/dconf-${pkgver}.tar.xz")
sha256sums=('4373e0ced1f4d7d68d518038796c073696280e22957babb29feb0267c630fec2')
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:
post_install() {
gio-querymodules-32 /usr/lib/gio/modules
}
post_upgrade(){
post_install
}
post_remove() {
post_install
}
# vim: ts=2 sw=2 et:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment