mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
30 lines
743 B
Bash
30 lines
743 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Fabian Kosmale <0inkane@googlemail.com>
|
|
# Contributor: Bruno Gola <brunogola at gmail dot com>
|
|
|
|
pkgname=freexl
|
|
pkgver=1.0.0g
|
|
pkgrel=1
|
|
depends=('glibc')
|
|
conflicts='libfreexl'
|
|
replaces='libfreexl'
|
|
pkgdesc="Library to extract valid data from within an Excel (.xls) spreadsheet."
|
|
arch=('x86_64')
|
|
url="https://www.gaia-gis.it/fossil/freexl/index"
|
|
license=('MPL' 'GPL' 'LGPL')
|
|
source=("http://www.gaia-gis.it/gaia-sins/freexl-sources/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('55e288206290079ed7c5db76e2101032')
|
|
|
|
build() {
|
|
cd "$srcdir/freexl-$pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/freexl-$pkgver"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|