development/sqliteman: Updated for version 1.0.1

This commit is contained in:
Dhaby Xiloj 2010-05-13 00:25:37 +02:00 committed by Robby Workman
parent f7fdac8152
commit 8710ab8858
3 changed files with 12 additions and 7 deletions

View file

@ -2,5 +2,3 @@ Sqliteman is a simple but powerful Sqlite3 GUI database manager.
sqliteman is useful for managing tables, views, or triggers
and administering the database space and index statistics.
Requires QT4, which is also available at SlackBuilds.org.

View file

@ -34,10 +34,13 @@ OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
fi
set -e
@ -58,10 +61,12 @@ find . \
cmake \
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
-DCMAKE_INSTALL_PREFIX=/usr .
-DCMAKE_INSTALL_PREFIX=/usr \
-DLIB_SUFFIX="$LIBDIRSUFFIX" \
.
make
make install DESTDIR=$PKG
make
make install DESTDIR=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
@ -80,4 +85,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View file

@ -2,7 +2,9 @@ PRGNAM="sqliteman"
VERSION="1.0.1"
HOMEPAGE="http://sqliteman.sourceforge.net"
DOWNLOAD="http://downloads.sourceforge.net/sqliteman/sqliteman-1.0.1.tar.gz"
DOWNLOAD_x86_64=""
MD5SUM="6d4c6cffe4f7d68c0a8a8e2ce0e853df"
MD5SUM_x86_64=""
MAINTAINER="Dhaby Xiloj"
EMAIL="slack.dhabyx@gmail.com"
APPROVED="rworkman"
APPROVED="rworkman,pprkut"