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/tnef |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/tnef')
-rw-r--r-- | community/tnef/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/community/tnef/PKGBUILD b/community/tnef/PKGBUILD new file mode 100644 index 000000000..b01fec8d4 --- /dev/null +++ b/community/tnef/PKGBUILD @@ -0,0 +1,21 @@ +# $Id: PKGBUILD 23480 2010-08-11 10:15:58Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Jeffrey 'jf' Lim <jfs.world@gmail.com> + +pkgname=tnef +pkgver=1.4.7 +pkgrel=1 +arch=(i686 x86_64) +pkgdesc="Program which operates like tar to unpack the files inside an ms-tnef MIME attachment" +url="http://sourceforge.net/projects/tnef/" +license=('GPL') +depends=() +source=(http://downloads.sourceforge.net/project/tnef/tnef/v$pkgver/tnef-$pkgver.tar.gz) +md5sums=('00978a8ad8cc79a1ee605172f882ebe9') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$pkgdir install +} |