mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 12:54:37 +08:00
22 lines
559 B
Bash
22 lines
559 B
Bash
# Maintainer: Fabian Kosmale <inkane@chakra-project.org>
|
|
pkgname=libmwaw
|
|
pkgver=0.3.1
|
|
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=('6f1ac4a0e24131c422e1e91f07718fb6')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|