Skip to content

Instantly share code, notes, and snippets.

@L42y
Created May 6, 2011 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save L42y/959275 to your computer and use it in GitHub Desktop.
Save L42y/959275 to your computer and use it in GitHub Desktop.
python-nautilus PKGBUILD
# Maintaner: Giorgio Gilestro <giorgio@gilest.ro>
pkgname=python-nautilus
pkgver=1.0
pkgrel=1
pkgdesc="Python binding for Nautilus components"
arch=('i686' 'x86_64')
url="http://projects.gnome.org/nautilus-python/"
license="GPL"
makedepends=('pkgconfig' 'gnome-python' )
depends=('nautilus' 'pygtk')
optdepends=('python2-gconf: required for open-terminal and background-image examples')
options=('!libtool' '!emptydirs')
source=(http://ftp.gnome.org/pub/GNOME/sources/nautilus-python/${pkgver}/nautilus-python-${pkgver}.tar.bz2)
sha256sums=('5ff4a2601ef2df06e31b4fe388cd18bcff400b42ea4ac56f45fbe8e9948c9cad')
build() {
export PYTHON=python2
cd "$srcdir/nautilus-python-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/nautilus-python-$pkgver"
make DESTDIR="$pkgdir" install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment