mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
29 lines
765 B
Bash
29 lines
765 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Fabian Kosmale <0inkane@googlemail.com>
|
|
# Contributions from Arch:https://aur.archlinux.org/packages/libspatialite/
|
|
|
|
pkgname=libspatialite
|
|
pkgver=4.1.1
|
|
pkgrel=2
|
|
pkgdesc="SQLite extension to support spatial data types and operations"
|
|
arch=('x86_64')
|
|
url="https://www.gaia-gis.it/fossil/libspatialite/index"
|
|
license=('MPL')
|
|
depends=('geos' 'proj' 'sqlite3' 'freexl')
|
|
options=('!libtool')
|
|
source=("http://www.gaia-gis.it/gaia-sins/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('356e0b18de0d382e27da578dc227a7b0')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr --enable-geosadvanced
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|