mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
667 B
Bash
22 lines
667 B
Bash
# $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"
|
|
}
|