diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /core/glib2 |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'core/glib2')
-rw-r--r-- | core/glib2/PKGBUILD | 37 | ||||
-rw-r--r-- | core/glib2/glib2.csh | 1 | ||||
-rw-r--r-- | core/glib2/glib2.sh | 1 |
3 files changed, 39 insertions, 0 deletions
diff --git a/core/glib2/PKGBUILD b/core/glib2/PKGBUILD new file mode 100644 index 000000000..f1738b76b --- /dev/null +++ b/core/glib2/PKGBUILD @@ -0,0 +1,37 @@ +# $Id: PKGBUILD 99447 2010-11-14 19:35:34Z ibiru $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=glib2 +pkgver=2.26.1 +pkgrel=1 +pkgdesc="Common C routines used by GTK+ 2.4 and other libs" +url="http://www.gtk.org/" +arch=(i686 x86_64) +license=('LGPL') +depends=('pcre>=8.02') +makedepends=('pkgconfig' 'python2') +options=('!libtool' '!docs') +source=(http://ftp.gnome.org/pub/GNOME/sources/glib/2.26/glib-${pkgver}.tar.bz2 + glib2.sh + glib2.csh) +sha256sums=('7a74ff12b6b9dee1f2d0e520b56b68b621920c4f4250bdf23468e515625c28d5' + '9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a' + '8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3') + +build() { + cd "${srcdir}/glib-${pkgver}" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --with-pcre=system \ + --disable-fam + make + make DESTDIR="${pkgdir}" install + + install -d "${pkgdir}/etc/profile.d" + install -m755 "${srcdir}/glib2.sh" "${pkgdir}/etc/profile.d/" + install -m755 "${srcdir}/glib2.csh" "${pkgdir}/etc/profile.d/" + + for _i in "${pkgdir}/etc/bash_completion.d/"*; do + chmod -x "${_i}" + done +} diff --git a/core/glib2/glib2.csh b/core/glib2/glib2.csh new file mode 100644 index 000000000..7aa3a2ffa --- /dev/null +++ b/core/glib2/glib2.csh @@ -0,0 +1 @@ +setenv G_BROKEN_FILENAMES 1 diff --git a/core/glib2/glib2.sh b/core/glib2/glib2.sh new file mode 100644 index 000000000..96a056e1e --- /dev/null +++ b/core/glib2/glib2.sh @@ -0,0 +1 @@ +export G_BROKEN_FILENAMES=1 |