mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-26 15:32:15 +08:00
24 lines
526 B
Bash
24 lines
526 B
Bash
pkgname=libwps
|
|
pkgver=0.4.0
|
|
pkgrel=1
|
|
pkgdesc="a Microsoft Works file word processor format import filter library"
|
|
arch=('x86_64')
|
|
url="http://libwps.sourceforge.net/"
|
|
license=('LGPL')
|
|
depends=('libwpd' 'librevenge')
|
|
options=(!libtool)
|
|
source=("http://downloads.sourceforge.net/project/libwps/$pkgname/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz")
|
|
md5sums=('7daace0a791104af382a277ff81e828a')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|