summaryrefslogtreecommitdiff
path: root/staging/sushi/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'staging/sushi/PKGBUILD')
-rw-r--r--staging/sushi/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/staging/sushi/PKGBUILD b/staging/sushi/PKGBUILD
new file mode 100644
index 000000000..53d89b06b
--- /dev/null
+++ b/staging/sushi/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 157216 2012-04-26 03:55:30Z allan $
+# Maintainer: Ionut Biru <ibiru@archlinux.org>
+
+pkgname=sushi
+pkgver=0.4.1
+pkgrel=2
+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' 'libmusicbrainz3' 'libwebkit3' 'gtksourceview3' 'evince')
+makedepends=('intltool' 'gobject-introspection')
+options=(!libtool)
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('7889e4309443dd7dfd5c9546af23565d15813c3f8f2af6c6776702ca8911a7bd')
+
+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: