mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 21:57:13 +08:00
24 lines
650 B
Bash
24 lines
650 B
Bash
# $Id: PKGBUILD 68060 2010-02-10 16:21:25Z giovanni $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
|
|
pkgname=libwpd
|
|
pkgver=0.8.14
|
|
pkgrel=1
|
|
pkgdesc="Library for importing WordPerfect (tm) documents"
|
|
arch=('i686' 'x86_64')
|
|
url="http://libwpd.sourceforge.net/"
|
|
license=('LGPL')
|
|
depends=('libgsf>=1.14.3-2')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('64d66018897d759358f454010b6e75d2')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--without-docs
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|