blob: 084cb052b4d5e0bd6edf2683064ef9238e2bccad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Librairie pour la création de carte
# URL: http://trac.osgeo.org/proj/
# Maintainer: NuTyX core team
# Packager: lesibel at free dot fr
# Depends on:
name=proj
version=4.7.0
release=1
source=(http://download.osgeo.org/proj/$name-$version.tar.gz
http://download.osgeo.org/proj/$name-datumgrid-1.5.zip
http://www.swisstopo.admin.ch/internet/swisstopo/en/home/topics/survey/lv03-lv95/chenyx06/distortion_grids.parsys.65772.downloadList.94632.DownloadFile.tmp/chenyx06antv2.zip)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
install -D COPYING $PKG/usr/share/licenses/$name/LICENSE
}
|