summaryrefslogtreecommitdiff
path: root/community/gnumail
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/gnumail
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/gnumail')
-rw-r--r--community/gnumail/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/community/gnumail/PKGBUILD b/community/gnumail/PKGBUILD
new file mode 100644
index 000000000..9c71fd891
--- /dev/null
+++ b/community/gnumail/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 18211 2010-06-01 12:53:53Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
+# Contributor: Sebastian Sareyko <public@nooms.de>
+
+pkgname=gnumail
+pkgver=1.2.0pre3
+pkgrel=3
+pkgdesc="A complete and fast mail application for GNUstep"
+arch=('i686' 'x86_64')
+url="http://www.collaboration-world.com/gnumail"
+license=('GPL')
+depends=('pantomime' 'addresses' 'gcc' 'gnustep-gui')
+options=('!makeflags')
+source=(http://www.collaboration-world.com/cgi-bin/project/download.cgi/GNUMail-$pkgver.tar.gz?rid=103)
+md5sums=('0f91fe0c32ef369ea843a2ab3909fb2b')
+
+build() {
+ cd $srcdir
+ mv GNUMail-$pkgver.tar.gz?rid=103 GNUMail-$pkgver.tar.gz
+ tar xfz GNUMail-$pkgver.tar.gz
+ cd $srcdir/GNUMail
+
+ if [ -z "$GNUSTEP_USER_CONFIG_FILE" ] ; then
+ . /etc/profile.d/GNUstep.sh
+ fi
+
+ make || return 1
+ make GNUSTEP_INSTALLATION_DIR=$pkgdir/opt/GNUstep/System install
+}