mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
gis/postgis: Updated for version 2.1.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
da6c4a20cf
commit
3935b93513
2 changed files with 10 additions and 12 deletions
|
@ -25,7 +25,7 @@
|
|||
# Maintained by Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
|
||||
|
||||
PRGNAM=postgis
|
||||
VERSION=${VERSION:-2.1.1}
|
||||
VERSION=${VERSION:-2.1.2}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -71,10 +71,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
|||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
|
@ -91,7 +91,7 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/man/man1
|
||||
|
@ -99,9 +99,7 @@ cp -a doc/man/* $PKG/usr/man/man1
|
|||
gzip -9 $PKG/usr/man/man1/*.1
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
COPYING CREDITS ChangeLog NEWS README.postgis TODO \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a COPYING CREDITS ChangeLog NEWS README.postgis TODO $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="postgis"
|
||||
VERSION="2.1.1"
|
||||
VERSION="2.1.2"
|
||||
HOMEPAGE="http://postgis.org"
|
||||
DOWNLOAD="http://download.osgeo.org/postgis/source/postgis-2.1.1.tar.gz"
|
||||
MD5SUM="4af86a39e2e9dbf10fe894e03c2c7027"
|
||||
DOWNLOAD="http://download.osgeo.org/postgis/source/postgis-2.1.2.tar.gz"
|
||||
MD5SUM="9d9dc316f7d68dacd242cac6c305fe65"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="gdal json-c postgresql"
|
||||
|
|
Loading…
Reference in a new issue