# $Id: PKGBUILD 169303 2012-10-18 23:51:08Z heftig $ # Maintainer: Andreas Radke # Contributor: Harley Laue pkgbase=anjuta pkgname=('libanjuta' 'anjuta') pkgver=3.6.1 pkgrel=1 pkgdesc="GNOME Integrated Development Environment (IDE)" arch=('i686' 'x86_64') license=('GPL') makedepends=('vte3' 'gdl' 'autogen' 'devhelp' 'glade' 'libgda' 'subversion' 'gnome-icon-theme' 'vala' 'dconf' 'gnome-doc-utils' 'intltool' 'gobject-introspection' 'itstool') url="http://www.anjuta.org/" source=(ftp://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz) options=('!libtool' '!emptydirs') sha256sums=('fd1e380f26bfdcf49661d6b8b2ab25eb3af44bca56aaa5f08c4d9af72cd9d98b') build() { cd "$pkgbase-$pkgver" PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \ --localstatedir=/var make } package_libanjuta(){ pkgdesc="Anjuta runtime library" depends=('gdl') conflicts=('anjuta<3.4.4') cd "$pkgbase-$pkgver/libanjuta" # j1: Race during linking make -j1 DESTDIR="$pkgdir" install } package_anjuta(){ pkgdesc="GNOME Integrated Development Environment (IDE)" depends=('libanjuta' 'vte3' 'autogen' 'devhelp' 'glade' 'libgda' 'subversion' 'gnome-icon-theme' 'vala' 'dconf') install=anjuta.install cd "$pkgbase-$pkgver" make -j1 DESTDIR="$pkgdir" install cd libanjuta make -j1 DESTDIR="$pkgdir" uninstall sed -i "1s|#!/usr/bin/python$|&2|" \ $pkgdir/usr/share/anjuta/project/{pygtk,python}/src/main.py }