summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/glib2/PKGBUILD
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-10-23 18:17:40 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-10-23 18:19:39 (GMT)
commitadbcf19958300e9b6598990184c8815b945ba0ee (patch)
treef4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/glib2/PKGBUILD
parent61a68250df10d29b624650948484898334ff22d0 (diff)
downloadlinhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core-testing/glib2/PKGBUILD')
-rw-r--r--abs/core-testing/glib2/PKGBUILD33
1 files changed, 0 insertions, 33 deletions
diff --git a/abs/core-testing/glib2/PKGBUILD b/abs/core-testing/glib2/PKGBUILD
deleted file mode 100644
index 32cf552..0000000
--- a/abs/core-testing/glib2/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 79346 2010-05-03 10:44:26Z ibiru $
-# Maintainer: Jan de Groot <jgc@archlinux.org>
-
-pkgname=glib2
-pkgver=2.24.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')
-options=('!libtool' '!docs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/glib/2.24/glib-${pkgver}.tar.bz2
- glib2.sh
- glib2.csh)
-sha256sums=('014c3da960bf17117371075c16495f05f36501db990851ceea658f15d2ea6d04'
- '9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
- '8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3')
-
-build() {
- cd "${srcdir}/glib-${pkgver}"
- ./configure --prefix=/usr --enable-static --enable-shared \
- --with-pcre=system --disable-fam || return 1
- make || return 1
- make DESTDIR="${pkgdir}" install || return 1
-
- install -d "${pkgdir}/etc/profile.d"
- install -m755 "${srcdir}/glib2.sh" "${pkgdir}/etc/profile.d/" || return 1
- install -m755 "${srcdir}/glib2.csh" "${pkgdir}/etc/profile.d/" || return 1
-
- chmod 755 ${pkgdir}/usr/bin/gtester-report || return 1
-}