diff options
author | root <root@rshg054.dnsready.net> | 2012-09-25 00:23:17 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-09-25 00:23:17 -0700 |
commit | 9ddf3e5a94b0848cdf9e6ffcc586576bb614bc13 (patch) | |
tree | 6b81ad2acdf24efb0e3a131110ebe97d4b9ed599 /gnome-unstable/sushi/PKGBUILD | |
parent | 8f0a971364bf8fee254a13a94adf2bfa9173e804 (diff) |
Tue Sep 25 00:23:14 PDT 2012
Diffstat (limited to 'gnome-unstable/sushi/PKGBUILD')
-rw-r--r-- | gnome-unstable/sushi/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnome-unstable/sushi/PKGBUILD b/gnome-unstable/sushi/PKGBUILD new file mode 100644 index 000000000..3276116b3 --- /dev/null +++ b/gnome-unstable/sushi/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 167042 2012-09-24 20:39:02Z jgc $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> + +pkgname=sushi +pkgver=3.6.0 +pkgrel=1 +pkgdesc="A quick previewer for Nautilus" +arch=(i686 x86_64) +url="http://www.gnome.org" +license=('GPL2') +groups=(gnome-extra) +depends=('clutter-gtk' 'clutter-gst' 'gjs' 'libmusicbrainz5' 'webkitgtk3' 'gtksourceview3' 'evince') +install=sushi.install +makedepends=('intltool' 'gobject-introspection') +options=(!libtool) +source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) +sha256sums=('506f0f1f934e9e6c0f5584619c3f2ab0d5906248472ca1bf08a159504ad02f78') + +build() { + cd "$pkgname-$pkgver" + ./configure --prefix=/usr --libexecdir=/usr/lib/sushi + make +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} + +# vim:set ts=2 sw=2 et: |