diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/balsa | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/balsa')
-rw-r--r-- | community/balsa/PKGBUILD | 45 | ||||
-rw-r--r-- | community/balsa/balsa.changelog | 2 | ||||
-rw-r--r-- | community/balsa/balsa.install | 12 |
3 files changed, 59 insertions, 0 deletions
diff --git a/community/balsa/PKGBUILD b/community/balsa/PKGBUILD new file mode 100644 index 000000000..5c38126d2 --- /dev/null +++ b/community/balsa/PKGBUILD @@ -0,0 +1,45 @@ +# $Id: PKGBUILD 91059 2013-05-18 15:38:27Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Ionut Biru <ibiru@archlinux.org> +# Contributor: Brad Fanella <bradfanella@archlinux.us> +# Contributor: Roman Kyrylych <roman@archlinux.org> + +pkgname=balsa +pkgver=2.5.1 +pkgrel=1 +pkgdesc="An e-mail client for GNOME" +arch=('i686' 'x86_64') +url='http://pawsa.fedorapeople.org/balsa/' +license=('GPL') +depends=('gmime' 'webkitgtk3' 'libesmtp' 'libnotify' 'gpgme' 'gtksourceview3' 'gtkspell3' 'gnome-icon-theme' 'desktop-file-utils') +makedepends=('perl-xml-parser' 'gnome-doc-utils' 'intltool') +install=$pkgname.install +changelog=$pkgname.changelog +source=(http://pawsa.fedorapeople.org/${pkgname}/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('52ce445dca86eb42e2e402a5b76616a1a522b89acbb631215079022ef80a7a10') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --with-ssl \ + --with-gpgme=gpgme-config \ + --with-gss \ + --with-ldap \ + --with-gtksourceview \ + --with-gtkspell \ + --with-rubrica \ + --with-sqlite \ + --without-nm \ + --without-gnome \ + --with-html-widget=webkit + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make GTK_UPDATE_ICON_CACHE=/bin/true DESTDIR="${pkgdir}" install +} diff --git a/community/balsa/balsa.changelog b/community/balsa/balsa.changelog new file mode 100644 index 000000000..8fa27a1bf --- /dev/null +++ b/community/balsa/balsa.changelog @@ -0,0 +1,2 @@ +2013-05-18 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * balsa 2.5.1-1 diff --git a/community/balsa/balsa.install b/community/balsa/balsa.install new file mode 100644 index 000000000..1f167b5e9 --- /dev/null +++ b/community/balsa/balsa.install @@ -0,0 +1,12 @@ +post_install() { + gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor + update-desktop-database -q +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} |