diff options
author | root <root@rshg054.dnsready.net> | 2011-09-20 23:14:47 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-09-20 23:14:47 +0000 |
commit | d739da01541d53414129d3171df221cfe2440fe5 (patch) | |
tree | 065870578009b02f2759485f0eb33cf37d7e12bf /gnome-unstable/gucharmap/PKGBUILD | |
parent | df65be2b18070d63ffd056e8563279e4646bee9a (diff) |
Tue Sep 20 23:14:47 UTC 2011
Diffstat (limited to 'gnome-unstable/gucharmap/PKGBUILD')
-rw-r--r-- | gnome-unstable/gucharmap/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnome-unstable/gucharmap/PKGBUILD b/gnome-unstable/gucharmap/PKGBUILD new file mode 100644 index 000000000..1c1593267 --- /dev/null +++ b/gnome-unstable/gucharmap/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 138238 2011-09-19 14:31:59Z ibiru $ +# Maintainer: Jan De Groot <jgc@archlinux.org> + +pkgname=gucharmap +pkgver=3.1.92 +pkgrel=1 +pkgdesc="Gnome Unicode Charmap" +arch=('i686' 'x86_64') +license=('GPL') +url="http://www.gnome.org" +depends=('gconf' 'hicolor-icon-theme') +makedepends=('gtk-doc' 'intltool' 'gobject-introspection') +options=('!libtool' '!emptydirs') +install=gucharmap.install +source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz) +sha256sums=('370179135acbe87c22854932964a1f5ad469c811abe63d4c10e2394cbccfbd47') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --disable-static \ + --disable-scrollkeeper --enable-introspection + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make -j1 GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/gconf/schemas" + gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain gucharmap ${pkgdir}/etc/gconf/schemas/*.schemas + rm -f ${pkgdir}/etc/gconf/schemas/*.schemas +} |