Created
May 6, 2011 16:20
-
-
Save L42y/959275 to your computer and use it in GitHub Desktop.
python-nautilus PKGBUILD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintaner: Giorgio Gilestro <[email protected]> | |
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