diff options
author | Joe <joe@joelightning.com> | 2011-10-20 22:51:34 +0100 |
---|---|---|
committer | Joe <joe@joelightning.com> | 2011-10-20 22:51:34 +0100 |
commit | e866f0523be39471f4ff960fde220ff65ecfe503 (patch) | |
tree | 773659d4e29799c113d364c02b76b8bcde29d932 /testing/seahorse/PKGBUILD | |
parent | 3bba0cffb3b78e071fed7a076a70916dee05a38e (diff) | |
parent | 5c0a5f2b9fa7f1683f279728342aa7f5f0cf90a3 (diff) |
Merge branch 'master' of ssh://parabola-git/abslibre-mips64el
Diffstat (limited to 'testing/seahorse/PKGBUILD')
-rw-r--r-- | testing/seahorse/PKGBUILD | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/testing/seahorse/PKGBUILD b/testing/seahorse/PKGBUILD index c32552ae1..e5105f8c3 100644 --- a/testing/seahorse/PKGBUILD +++ b/testing/seahorse/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 139049 2011-09-28 19:33:09Z ibiru $ +# $Id: PKGBUILD 140718 2011-10-18 14:25:36Z ibiru $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Contributor: Michel Brabants <michel.linux@tiscali.be> pkgname=seahorse -pkgver=3.2.0 +pkgver=3.2.1 pkgrel=1 pkgdesc="GNOME application for managing PGP keys." arch=(i686 x86_64) @@ -11,14 +11,18 @@ license=('GPL') url="http://projects.gnome.org/seahorse/" depends=('gtk3' 'libgnome-keyring' 'gnome-keyring' 'libsoup' 'gpgme' 'desktop-file-utils' 'hicolor-icon-theme' 'dconf') makedepends=('gettext' 'libldap' 'intltool' 'pkgconfig' 'gnome-doc-utils' 'gobject-introspection' 'openssh' 'libsm') +optdepends=('openssh: SSH support') +provides=('x11-ssh-askpass') options=('!libtool' '!emptydirs') groups=('gnome-extra') install=seahorse.install -source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('ef76aed10bac519fa854a869dc713cd7b49a41fbd2085647067444595302b6f7') +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz + seahorse-ssh-askpass.sh) +sha256sums=('84f1df80055ca66179a023130e179de44053e7df91c1f6c7fd536563fac832b2' + '1792ab2c0bbad446b8fad0a0c9008a75f60a9666c895d37d2adcd827e49fafbb') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "$srcdir/$pkgname-$pkgver" ./configure --prefix=/usr --sysconfdir=/etc \ --localstatedir=/var --disable-static \ --enable-ldap --enable-hkp \ @@ -29,6 +33,8 @@ build() { } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install + install -Dm755 "$srcdir/seahorse-ssh-askpass.sh" \ + "$pkgdir/etc/profile.d/seahorse-ssh-askpass.sh" } |