summaryrefslogtreecommitdiff
path: root/testing/pygtk/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-07-20 11:41:05 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-07-20 11:41:05 -0300
commit0d18015803bebeb58911bf791653597291056095 (patch)
treedf21e7972fd9d4555942dbad0bde22066ebf95f3 /testing/pygtk/PKGBUILD
parent2f352ca8b911d96566b10adc049f76a552ab93aa (diff)
parent3da6b13f1eb136d0899bd2e8dd217048bb4d9030 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/keysafe/PKGBUILD community/lesspipe/PKGBUILD community/xchat-systray-integration/PKGBUILD core/gen-init-cpio/PKGBUILD extra/xarchiver/PKGBUILD
Diffstat (limited to 'testing/pygtk/PKGBUILD')
-rw-r--r--testing/pygtk/PKGBUILD37
1 files changed, 0 insertions, 37 deletions
diff --git a/testing/pygtk/PKGBUILD b/testing/pygtk/PKGBUILD
deleted file mode 100644
index bc7c56efa..000000000
--- a/testing/pygtk/PKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# $Id: PKGBUILD 131736 2011-07-14 11:07:45Z stephane $
-# Maintainer: Jan de Groot <jgc@archlinux.org>
-# Contributor: Sarah Hay <sarahhay@mb.sympatico.ca>
-
-pkgname=pygtk
-pkgver=2.24.0
-pkgrel=2
-pkgdesc="Python bindings for the GTK widget set"
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('libglade' 'python2-cairo' 'pygobject')
-makedepends=('python2-numpy' 'pygobject-devel')
-optdepends=('python2-numpy')
-options=('!libtool')
-url="http://www.pygtk.org/"
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2
- python27.patch)
-sha256sums=('cd1c1ea265bd63ff669e92a2d3c2a88eb26bcd9e5363e0f82c896e649f206912'
- '39a30456cba055a452bb55c74ef1ff2f5f7bfaad22855b4dd569ab009b56b682')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- #https://bugzilla.gnome.org/show_bug.cgi?id=623965
- patch -Np1 -i "${srcdir}/python27.patch"
-
- PYTHON=python2 ./configure --prefix=/usr
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
- install -m644 gtk/gtk-extrafuncs.defs "${pkgdir}/usr/share/pygtk/2.0/defs/"
-
- sed -i -e 's#env python$#env python2#' "${pkgdir}"/usr/lib/pygtk/2.0/{,demos/}*.py
-}