summaryrefslogtreecommitdiff
path: root/nonprism/sylpheed-nonprism/PKGBUILD
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-04 01:57:36 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-04 01:57:36 -0300
commit0be822175bb3cef0534b9a0597e84ae1ee6374ec (patch)
treec9a4fb91c61309280fd8201c7cb52789ce02a7c6 /nonprism/sylpheed-nonprism/PKGBUILD
parent468e115b1432c745ce9ccf06d2fcca6b3cfb7227 (diff)
downloadabslibre-0be822175bb3cef0534b9a0597e84ae1ee6374ec.tar.gz
abslibre-0be822175bb3cef0534b9a0597e84ae1ee6374ec.tar.bz2
abslibre-0be822175bb3cef0534b9a0597e84ae1ee6374ec.zip
remove nonprism suffix and add complex pkgrel on nonprism packages
Diffstat (limited to 'nonprism/sylpheed-nonprism/PKGBUILD')
-rw-r--r--nonprism/sylpheed-nonprism/PKGBUILD51
1 files changed, 0 insertions, 51 deletions
diff --git a/nonprism/sylpheed-nonprism/PKGBUILD b/nonprism/sylpheed-nonprism/PKGBUILD
deleted file mode 100644
index fae1f4661..000000000
--- a/nonprism/sylpheed-nonprism/PKGBUILD
+++ /dev/null
@@ -1,51 +0,0 @@
-# $Id: PKGBUILD 113099 2014-06-13 15:15:18Z speps $
-# Maintainer (Arch): speps <speps at aur dot archlinux dot org>
-# Contributor (Arch): Alexander Fehr <pizzapunk gmail com>
-# Contributor (Arch): dorphell <dorphell@archlinux.org>
-# Maintainer: André Silva <emulatorman@parabola.nu>
-# Contributor: Aditya Som <icarious@hacari.org>"
-
-_pkgname=sylpheed
-pkgname=sylpheed-nonprism
-pkgver=3.4.2
-pkgrel=1
-pkgdesc="Lightweight and user-friendly e-mail client, without Gmail support"
-arch=('i686' 'x86_64' 'mips64el')
-url="http://sylpheed.sraoss.jp/en/"
-license=('GPL')
-replaces=($_pkgname)
-conflicts=($_pkgname)
-provides=($_pkgname=$pkgver)
-depends=('compface' 'gpgme' 'gtkspell' 'desktop-file-utils')
-makedepends=('openssl')
-install="$_pkgname.install"
-source=("http://sylpheed.sraoss.jp/$_pkgname/v${pkgver%.*}/$_pkgname-$pkgver.tar.bz2"
- 'nonprism.patch')
-md5sums=('d4e53489763ff2cb575ab02890d91dc9'
- 'e1bddc14962e607cdb899ec082660639')
-
-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
-}