diff options
author | root <root@rshg054.dnsready.net> | 2011-09-03 23:14:38 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-09-03 23:14:38 +0000 |
commit | 3b18be1752c9fd9fa74eb1314ca97dd61e9ce912 (patch) | |
tree | 695198e2351a85f6c3a8fe7ba53ba5e4a4ec2bdd /gnome-unstable/nautilus/PKGBUILD | |
parent | b37ee9de1a430956d9e5958ebd9d7e0dbfc79327 (diff) |
Sat Sep 3 23:14:38 UTC 2011
Diffstat (limited to 'gnome-unstable/nautilus/PKGBUILD')
-rw-r--r-- | gnome-unstable/nautilus/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnome-unstable/nautilus/PKGBUILD b/gnome-unstable/nautilus/PKGBUILD new file mode 100644 index 000000000..11914a97b --- /dev/null +++ b/gnome-unstable/nautilus/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 136839 2011-09-02 08:13:37Z ibiru $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=nautilus +pkgver=3.1.90 +pkgrel=1 +pkgdesc="GNOME file manager" +arch=('i686' 'x86_64') +license=('GPL') +depends=('libexif' 'gnome-desktop' 'exempi' 'gvfs' 'desktop-file-utils' 'gnome-icon-theme' 'dconf') +makedepends=('intltool' 'gobject-introspection') +url="http://www.gnome.org" +groups=('gnome') +options=('!libtool' '!emptydirs') +install=nautilus.install +source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz) +sha256sums=('0770544a533f63c969377105afdce1bf66073152604a669e242a5e78502045ad') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --disable-static \ + --libexecdir=/usr/lib/nautilus \ + --disable-nst-extension \ + --disable-update-mimedb \ + --disable-packagekit \ + --disable-schemas-compile + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |