mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:57:56 +08:00
24 lines
583 B
Bash
24 lines
583 B
Bash
pkgname=libwpd
|
|
pkgver=0.10.1
|
|
pkgrel=1
|
|
pkgdesc="Library for importing WordPerfect (tm) documents"
|
|
arch=('i686' 'x86_64')
|
|
url="http://libwpd.sourceforge.net/"
|
|
license=('LGPL')
|
|
depends=('gcc-libs' 'librevenge')
|
|
makedepends=('libgsf')
|
|
options=('!emptydirs')
|
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.xz)
|
|
md5sums=('2e98574901f8019a239947c1d8c34b69')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|