diff options
author | root <root@rshg054.dnsready.net> | 2012-04-15 00:01:28 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-04-15 00:01:28 +0000 |
commit | f06b9295f0e60a0faa0d3231a0d0b3f2358d8459 (patch) | |
tree | 4bef4a67030f8ef621aaeeb16cc8d7f313c9eb67 /community/libcryptui | |
parent | caa3e47071c8516ac31afaa0b654f5aaa4911939 (diff) |
Sun Apr 15 00:01:28 UTC 2012
Diffstat (limited to 'community/libcryptui')
-rw-r--r-- | community/libcryptui/PKGBUILD | 30 | ||||
-rw-r--r-- | community/libcryptui/libcryptui.install | 11 |
2 files changed, 41 insertions, 0 deletions
diff --git a/community/libcryptui/PKGBUILD b/community/libcryptui/PKGBUILD new file mode 100644 index 000000000..3e015cecf --- /dev/null +++ b/community/libcryptui/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 69329 2012-04-13 22:06:22Z bgyorgy $ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> + +pkgname=libcryptui +pkgver=3.4.0 +pkgrel=1 +pkgdesc="Library for OpenPGP prompts" +arch=('i686' 'x86_64') +url="http://git.gnome.org/browse/libcryptui/" +license=('GPL') +depends=('gtk3' 'libsm' 'gpgme' 'dbus-glib' 'libnotify' 'libgnome-keyring' 'dconf') +makedepends=('intltool' 'gobject-introspection') +options=('!libtool') +install=$pkgname.install +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) +sha256sums=('23e84fd9e733e58bd1640b229cfc35830287628125f0f15604ea6aecd606fac7') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --disable-static --disable-schemas-compile + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir/" install +} diff --git a/community/libcryptui/libcryptui.install b/community/libcryptui/libcryptui.install new file mode 100644 index 000000000..7a903e80c --- /dev/null +++ b/community/libcryptui/libcryptui.install @@ -0,0 +1,11 @@ +post_install() { + glib-compile-schemas usr/share/glib-2.0/schemas +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} |