add GNUMail

This commit is contained in:
Christoffer Müller Madsen 2016-10-20 02:24:28 +02:00
parent 71582cc2ab
commit 29839c49ed
2 changed files with 45 additions and 0 deletions

34
gnumail/PKGBUILD Normal file
View File

@ -0,0 +1,34 @@
# Maintainer: Christoffer Müller Madsen <christoffer@guava.space>
pkgname=gnumail
_pkgname=GNUMail
pkgver=1.2.2
pkgrel=1
pkgdesc="GNUMail"
arch=(i686 x86_64)
url="http://home.gna.org/gnustep-nonfsf/gnumail.html"
license=('GPL')
install=$pkgname.install
depends=(gnustep-base gnustep-gui gnustep-back pantomime addresses)
makedepends=('gcc-objc'
'gnustep-make')
provides=(gnumail)
conflicts=(gnumail)
source=(http://download.gna.org/gnustep-nonfsf/$_pkgname-$pkgver.tar.gz)
md5sums=('c2cc13b7c13d96b83520be5671531ed3')
build() {
cd $srcdir/$_pkgname-$pkgver
# necessary to set environment if not in user startup.
#. /opt/GNUstep/System/Library/Makefiles/GNUstep.sh
. /usr/share/GNUstep/Makefiles/GNUstep.sh
#./configure --prefix=/usr/share/GNUstep
#./configure
make
}
package() {
cd $srcdir/$_pkgname-$pkgver
make DESTDIR="$pkgdir/" install
install -D -m644 "$pkgdir/usr/lib/GNUstep/Applications/$_pkgname.app/Resources/$_pkgname.desktop" \
"$pkgdir/usr/share/applications/$_pkgname.desktop"
}

11
gnumail/gnumail.install Normal file
View File

@ -0,0 +1,11 @@
post_install() {
update-desktop-database -q
}
post_upgrade() {
post_install $1
}
post_remove() {
post_install $1
}