diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-12 11:47:54 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-12 11:47:54 +0200 |
commit | 3b0edc5b1764a1e2908ceaa9d433cfc9cfd1194f (patch) | |
tree | 9e06a4c9844b5846454c9fecfdb32f8ee663804e /libraries | |
parent | bc3248e704f946b86a3030a97cf3ab4006a0eba0 (diff) |
libraries/sqlite: Removed from 12.2 repository
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/sqlite/COPYING | 7 | ||||
-rw-r--r-- | libraries/sqlite/README | 6 | ||||
-rw-r--r-- | libraries/sqlite/slack-desc | 19 | ||||
-rw-r--r-- | libraries/sqlite/sqlite.SlackBuild | 98 | ||||
-rw-r--r-- | libraries/sqlite/sqlite.info | 8 |
5 files changed, 0 insertions, 138 deletions
diff --git a/libraries/sqlite/COPYING b/libraries/sqlite/COPYING deleted file mode 100644 index d133f55b48ce..000000000000 --- a/libraries/sqlite/COPYING +++ /dev/null @@ -1,7 +0,0 @@ -SQLite Copyright - -The original author of SQLite has dedicated the code to the public domain. Anyone -is free to copy, modify, publish, use, compile, sell, or distribute the original -SQLite code, either in source code form or as a compiled binary, for any purpose, -commerical or non-commerical, and by any means. - diff --git a/libraries/sqlite/README b/libraries/sqlite/README deleted file mode 100644 index 1afefd18eea9..000000000000 --- a/libraries/sqlite/README +++ /dev/null @@ -1,6 +0,0 @@ -SQLite is a small C library that implements a self-contained, embeddable, -zero-configuration SQL database engine. - -The SQLite distribution comes with a standalone command-line access program -(sqlite) that can be used to administer an SQLite database and which serves -as an example of how to use the SQLite library. diff --git a/libraries/sqlite/slack-desc b/libraries/sqlite/slack-desc deleted file mode 100644 index a208eab9820f..000000000000 --- a/libraries/sqlite/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler-------------------------------------------------------| -sqlite: SQLite (simple, self contained database engine) -sqlite: -sqlite: SQLite is a small C library that implements a self-contained, -sqlite: embeddable, zero-configuration SQL database engine. -sqlite: -sqlite: The SQLite distribution comes with a standalone command-line access -sqlite: program (sqlite) that can be used to administer an SQLite database -sqlite: and which serves as an example of how to use the SQLite library. -sqlite: -sqlite: Homepage: http://www.sqlite.org/ -sqlite: diff --git a/libraries/sqlite/sqlite.SlackBuild b/libraries/sqlite/sqlite.SlackBuild deleted file mode 100644 index 06d2a9fbc7e6..000000000000 --- a/libraries/sqlite/sqlite.SlackBuild +++ /dev/null @@ -1,98 +0,0 @@ -#!/bin/sh - -# Slackware build script for sqlite3 - -# Copyright 2006 Martin Lefebvre <dadexter@gmail.com> -# Copyright 2008 Robby Workman, Northport, Alabama, USA -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -PRGNAM=sqlite -VERSION=3.6.2 -ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -chown -R root.root . -find . \ - \( -perm 777 -o -perm 775 -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --enable-threadsafe \ - --enable-cross-thread-connections \ - --enable-tempstore=yes \ - --enable-load-extension \ - --enable-static=no \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -) - -# Add missed man page: -# I've sent a patch for Makefile.in upstream, so maybe this will go away -install -D -m 0644 sqlite3.1 $PKG/usr/man/man1/sqlite3.1 -gzip -9 $PKG/usr/man/man1/sqlite3.1 - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a README VERSION $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -# Add a COPYING file -- http://www.sqlite.org/copyright.html -cat $CWD/COPYING > $PKG/usr/doc/$PRGNAM-$VERSION/COPYING -rm -rf $PKG/usr/doc/$PRGNAM-$VERSION/CVS -find $PKG/usr/doc -type f -exec chmod 0644 {} \; - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/libraries/sqlite/sqlite.info b/libraries/sqlite/sqlite.info deleted file mode 100644 index 3e6f8ff92e49..000000000000 --- a/libraries/sqlite/sqlite.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="sqlite" -VERSION="3.6.2" -HOMEPAGE="http://www.sqlite.org" -DOWNLOAD="http://www.sqlite.org/sqlite-3.6.2.tar.gz" -MD5SUM="46f92e42243bc51aaa3871645ce78bd5" -MAINTAINER="Robby Workman" -EMAIL="rw@rlworkman.net" -APPROVED="Erik Hanson David Somero" |