diff options
Diffstat (limited to 'extra/libytnef/PKGBUILD')
-rw-r--r-- | extra/libytnef/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/libytnef/PKGBUILD b/extra/libytnef/PKGBUILD new file mode 100644 index 000000000..8a48bb88e --- /dev/null +++ b/extra/libytnef/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: $ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Contributor: Andre Klitzing <aklitzing () online () de> +pkgname=libytnef +pkgver=1.5 +pkgrel=2 +pkgdesc="Yerase's TNEF Stream Reader library (decode winmail.dat)" +url="http://freshmeat.net/projects/ytnef/" +license=('GPL') +arch=(i686 x86_64) +options=(!libtool) +depends=('glibc') +source=(http://downloads.sourceforge.net/ytnef/${pkgname}-${pkgver}.tar.gz) +md5sums=('6c44b955f33cf714c75a7bbe895cc352') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --disable-static || return 1 + make || return 1 + make DESTDIR="${pkgdir}" install || return 1 + rm -f "${pkgdir}/usr/lib/libytnef.a" +} |