diff options
Diffstat (limited to 'community/gnumail/PKGBUILD')
-rw-r--r-- | community/gnumail/PKGBUILD | 30 |
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 +} |