wok-6.x view proj/receipt @ rev 21328
updated liburcu and liburcu-dev (0.10.0 -> 0.10.2)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Apr 19 10:28:08 2019 +0100 (2019-04-19) |
parents | ea9c0883605a |
children | 4b6d3ac55c10 |
line source
1 # SliTaz package receipt.
3 PACKAGE="proj"
4 VERSION="4.7.0"
5 CATEGORY="misc"
6 SHORT_DESC="Cartographic Projections Library."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://trac.osgeo.org/proj/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://download.osgeo.org/proj/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mkdir -p $DESTDIR/usr/bin
20 ./configure $CONFIGURE_ARGS && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib $fs/usr/share
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 cp -a $install/usr/share/proj $fs/usr/share
32 }