mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
730 B
Bash
22 lines
730 B
Bash
# $Id: PKGBUILD 35303 2009-04-11 22:01:12Z douglas $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributor: damir <damir@archlinux.org>
|
|
|
|
pkgname=wv2
|
|
pkgver=0.3.1
|
|
pkgrel=2
|
|
pkgdesc="wvWare is the continuation of Caolan McNamara's wv - the MSWord library. It can parse MSWord 9,8,7,6 formats"
|
|
arch=('i686' 'x86_64')
|
|
url="http://sourceforge.net/projects/wvware/"
|
|
depends=('libgsf>=1.14.1')
|
|
options=(!libtool)
|
|
source=(http://downloads.sourceforge.net/sourceforge/wvware/${pkgname}-${pkgver}.tar.bz2)
|
|
license=('GPL2')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --enable-debug=no
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install || return 1
|
|
}
|
|
md5sums=('4a20200141cb1299055f2bf13b56989d')
|