mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 07:17:25 +08:00
0af05b343a
renamed checksums to kdeapps.sums added for all packages the pgp signature for new/removed packages check: https://community.kde.org/Applications/16.12_Release_Notes#Tarballs_that_we_have_split
25 lines
662 B
Bash
25 lines
662 B
Bash
# Contributions from Arch: https://www.archlinux.org/packages/community/x86_64/postgis/
|
|
|
|
pkgname=postgis
|
|
pkgver=2.3.0
|
|
pkgrel=1
|
|
pkgdesc="Adds support for geographic objects to PostgreSQL"
|
|
arch=('x86_64')
|
|
url="http://postgis.refractions.net/"
|
|
license=('GPL')
|
|
options=('!makeflags')
|
|
depends=('postgresql' 'proj' 'geos' 'gdal' 'json-c' 'jasper' 'unixodbc')
|
|
source=(http://download.osgeo.org/postgis/source/$pkgname-$pkgver.tar.gz)
|
|
sha256sums=('0dbff06f4a196d49e5ac06ae6cc21bd5253aaa646af624c9bbf19df582d6cf55')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
make DESTDIR=${pkgdir} install
|
|
}
|