diff options
author | Bob De Mars <mr.chew.baka@gmail.com> | 2014-02-23 22:12:18 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-02-23 22:12:18 +0700 |
commit | ecf5602bf8cc61e2ab2b475283ce2e5faf41516f (patch) | |
tree | 648f53a9f4a9ab9cc05ccc133b4d70a2b5f8c78b /libraries/unixODBC/unixODBC.SlackBuild | |
parent | c310964d70388e7c75f79297e20517d675ae5fcc (diff) | |
download | slackbuilds-ecf5602bf8cc61e2ab2b475283ce2e5faf41516f.tar.gz |
libraries/unixODBC: Updated for version 2.3.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/unixODBC/unixODBC.SlackBuild')
-rw-r--r-- | libraries/unixODBC/unixODBC.SlackBuild | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/libraries/unixODBC/unixODBC.SlackBuild b/libraries/unixODBC/unixODBC.SlackBuild index 8cf3545f74..200b6eaf7d 100644 --- a/libraries/unixODBC/unixODBC.SlackBuild +++ b/libraries/unixODBC/unixODBC.SlackBuild @@ -2,6 +2,7 @@ # Slackware build script for unixODBC +# Copyright (c) 2014, Bob De Mars (aka Mr. B-o-B) <mr.chew.baka@gmail.com> # Copyright (c) 2010, Henrique Grolli Bassotto <henrique.grolli@gmail.com> # All rights reserved. # @@ -28,7 +29,7 @@ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=unixODBC -VERSION=2.3.1 +VERSION=${VERSION:-2.3.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -66,10 +67,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 {} \; # Disabled gui since it doesn't work with Qt 4.5 CFLAGS="$SLKCFLAGS" \ @@ -86,13 +87,19 @@ 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 # Don't clobber config files mv $PKG/etc/odbc.ini $PKG/etc/odbc.ini.new mv $PKG/etc/odbcinst.ini $PKG/etc/odbcinst.ini.new +mv $PKG/usr/share/man $PKG/usr +rm -rf $PKG/usr/share + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a AUTHORS COPYING README doc/* $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |