mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 00:04:37 +08:00
22 lines
546 B
Bash
22 lines
546 B
Bash
# Maintainer: Fabian Kosmale <inkane@chakra-project.org>
|
|
pkgname=libmwaw
|
|
pkgver=0.2.0
|
|
pkgrel=2
|
|
pkgdesc="Library to extract valid data from within an Excel (.xls) spreadsheet."
|
|
arch=('x86_64')
|
|
depends=('libwpd' 'libwpg')
|
|
license=('LGPLv2')
|
|
source=(http://downloads.sourceforge.net/libmwaw/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('d794625f156a9fb1c53b3f8a8aa13b5e')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|