# $Id$ # Maintainer: (Arch) David Runge # Contributor (Arch): speps # Contributor (Arch): Alexander Fehr # Contributor (Arch): dorphell # Contributor: Andreas Grapentin # Contributor: André Silva # Contributor: Aditya Som " # parabola changes and rationale: # - removed gmail support pkgname=sylpheed pkgver=3.6.0 pkgrel=3.nonprism1 pkgdesc="Lightweight and user-friendly e-mail client, without Gmail support" arch=('x86_64' 'i686' 'armv7h') url="https://sylpheed.sraoss.jp/en/" license=('GPL') depends=('compface' 'gpgme' 'gtkspell') makedepends=('openssl') source=("https://sylpheed.sraoss.jp/${pkgname}/v${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2" "nonprism.patch") sha512sums=('84c59e327690ed7e637e9ce60e630da6cdad771ccc278e31e490ed643da55c295fb47e999ad421fc59dbbcfed990882022b96cf478bd47253692d2e86279c591' 'e6cafb0ca6ef417c923817e68a6d25cc8efc824a09d38ffc944a4a44a2c52dd5549a8a95544f50bfccb0096d0e71521da1ef69572e18dd31c583cfc242425848') prepare() { cd $pkgname-$pkgver # Remove Gmail support patch -Np1 -i "$srcdir/nonprism.patch" } build() { cd "${pkgname}-${pkgver}" ./configure --prefix=/usr \ --enable-ldap make # Build Attachment-Tool Plug-in cd plugin/attachment_tool && make } package() { cd "${pkgname}-${pkgver}" make DESTDIR="$pkgdir/" install # Install Attachment-Tool Plug-in cd plugin/attachment_tool make DESTDIR="$pkgdir/" install-plugin }