mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
30 lines
947 B
Bash
30 lines
947 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# 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=2
|
|
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 $startdir/src
|
|
mv GNUMail-$pkgver.tar.gz?rid=103 GNUMail-$pkgver.tar.gz
|
|
tar xfz GNUMail-$pkgver.tar.gz
|
|
cd $startdir/src/GNUMail
|
|
|
|
if [ -z "$GNUSTEP_USER_CONFIG_FILE" ] ; then
|
|
. /etc/profile.d/GNUstep.sh
|
|
fi
|
|
|
|
make || return 1
|
|
make GNUSTEP_INSTALLATION_DIR=$startdir/pkg/opt/GNUstep/System install
|
|
}
|