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