diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/pantomime |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/pantomime')
-rw-r--r-- | community/pantomime/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/pantomime/PKGBUILD b/community/pantomime/PKGBUILD new file mode 100644 index 000000000..2d0156179 --- /dev/null +++ b/community/pantomime/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 14370 2010-04-03 00:07:53Z foutrelis $ +# Maintainer: Vesa Kaihlavirta <vegai@iki.fi> +# Contributor: Sebastian Sareyko <public@nooms.de> + +pkgname=pantomime +pkgver=1.2.0pre3 +pkgrel=2 +pkgdesc="A set of Objective-C classes that model a mail system" +arch=('i686' 'x86_64') +url="http://www.collaboration-world.com/pantomime" +license=("LGPL" "custom") +depends=('gnustep-back' 'openssl') +makedepends=('gnustep-make' 'gnustep-base' 'gcc-objc') +options=('!makeflags') +source=(http://www.collaboration-world.com/cgi-bin/project/download.cgi/Pantomime-$pkgver.tar.gz?rid=104) +md5sums=('b88f4634ec1f3a1ea1d5551ee10d9db7') + +build() { + source /etc/profile.d/GNUstep.sh + cd $startdir/src + mv Pantomime-$pkgver.tar.gz?rid=104 Pantomime-$pkgver.tar.gz + tar xfz Pantomime-$pkgver.tar.gz + cd $startdir/src/Pantomime + + make || return 1 + make GNUSTEP_INSTALLATION_DIR=$startdir/pkg/opt/GNUstep/System install || return 1 + install -D -m644 Documentation/LICENSE.elm $startdir/pkg/usr/share/licenses/$pkgname/LICENSE.elm +} |