diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/seahorse-nautilus/PKGBUILD | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/seahorse-nautilus/PKGBUILD')
-rw-r--r-- | community/seahorse-nautilus/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/seahorse-nautilus/PKGBUILD b/community/seahorse-nautilus/PKGBUILD new file mode 100644 index 000000000..8609d920c --- /dev/null +++ b/community/seahorse-nautilus/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 89362 2013-04-28 20:39:50Z bgyorgy $ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> + +pkgname=seahorse-nautilus +pkgver=3.8.0 +pkgrel=2 +pkgdesc="PGP encryption and signing for nautilus" +arch=('i686' 'x86_64') +url="http://git.gnome.org/browse/seahorse-nautilus/" +license=('GPL') +depends=('libcryptui' 'gcr' 'nautilus') +makedepends=('intltool') +options=('!libtool') +install=$pkgname.install +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz + glib236.patch) +sha256sums=('8173ef08a700ff254fb5637a7f2138ba7625b19ed2102a82fd69f1ecb8072863' + '0cefa14a45784c82871815e9bdcebbb96dea50a8e43316475e6a36d5dc47ade5') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + # Fix compatibility with glib 2.36 + patch -Np1 -i "$srcdir/glib236.patch" + + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --disable-static --disable-schemas-compile + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir/" install +} |