From 36a4a568cbbff23ee4bdf09aa8a42cccb6595628 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 1 Jul 2009 12:21:14 +0000 Subject: extra/luasql-postgres: moved from testing --- extra/luasql-postgres/APKBUILD | 27 +++++++++++++++++ extra/luasql-postgres/config.new | 59 ++++++++++++++++++++++++++++++++++++++ testing/luasql-postgres/APKBUILD | 27 ----------------- testing/luasql-postgres/config.new | 59 -------------------------------------- 4 files changed, 86 insertions(+), 86 deletions(-) create mode 100644 extra/luasql-postgres/APKBUILD create mode 100644 extra/luasql-postgres/config.new delete mode 100644 testing/luasql-postgres/APKBUILD delete mode 100644 testing/luasql-postgres/config.new diff --git a/extra/luasql-postgres/APKBUILD b/extra/luasql-postgres/APKBUILD new file mode 100644 index 0000000000..36756ca657 --- /dev/null +++ b/extra/luasql-postgres/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Mika Havela +# Maintainer: Mika Havela +pkgname=luasql-postgres +pkgver=2.1.1 +pkgrel=0 +pkgdesc="LuaSQL is a simple interface from Lua to a DBMS" +url="http://www.keplerproject.org/luasql/" +license="MIT" +depends="lua" +makedepends="lua-dev postgresql-dev" +install= +subpackages= +source="http://luaforge.net/frs/download.php/2686/luasql-$pkgver.tar.gz + config.new + " + +build() { + cd "$srcdir/luasql-$pkgver" + cp "$srcdir/config.new" config + + make || return 1 + mkdir -p "$pkgdir"/usr/lib/lua/5.1/luasql + cp src/postgres.so "$pkgdir"/usr/lib/lua/5.1/luasql +} + +md5sums="63bdd57de4b9d1be336ba112d8cb69eb luasql-2.1.1.tar.gz +6ee28fa90394da6a7e38cf507d56ba80 config.new" diff --git a/extra/luasql-postgres/config.new b/extra/luasql-postgres/config.new new file mode 100644 index 0000000000..a8650c5511 --- /dev/null +++ b/extra/luasql-postgres/config.new @@ -0,0 +1,59 @@ +# Driver (leave uncommented ONLY the line with the name of the driver) +#T= mysql +#T= oci8 +#T= odbc +T= postgres +#T= sqlite +#T=sqlite3 + +# Installation directories + +# Default prefix +PREFIX = /usr + +# System's libraries directory (where binary libraries are installed) +LUA_LIBDIR= $(PREFIX)/lib/lua/5.1 + +# System's lua directory (where Lua libraries are installed) +LUA_DIR= $(PREFIX)/share/lua/5.1 + +# Lua includes directory +LUA_INC= $(PREFIX)/include + +# Lua version number (first and second digits of target version) +LUA_VERSION_NUM= 514 + +# OS dependent +LIB_OPTION= -shared #for Linux +#LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X + +LIBNAME= $T.so +COMPAT_DIR= ../compat/src + +# Compilation parameters +# Driver specific +######## MySQL +#DRIVER_LIBS= -L/usr/local/mysql/lib -lmysqlclient -lz +#DRIVER_INCS= -I/usr/local/mysql/include +######## Oracle OCI8 +#DRIVER_LIBS= -L/home/oracle/OraHome1/lib -lz -lclntsh +#DRIVER_INCS= -I/home/oracle/OraHome1/rdbms/demo -I/home/oracle/OraHome1/rdbms/public +######## PostgreSQL +DRIVER_LIBS= -L/usr/pgsql/lib -lpq +DRIVER_INCS= -I/usr/pgsql/include +######## SQLite +#DRIVER_LIBS= -lsqlite +#DRIVER_INCS= +######## SQLite3 +#DRIVER_LIBS= -L/opt/local/lib -lsqlite3 +#DRIVER_INCS= -I/opt/local/include +######## ODBC +#DRIVER_LIBS= -L/usr/local/lib -lodbc +#DRIVER_INCS= -DUNIXODBC -I/usr/local/include + +WARN= -Wall -Wmissing-prototypes -Wmissing-declarations -ansi -pedantic +INCS= -I$(LUA_INC) +CFLAGS= -O2 $(WARN) -I$(COMPAT_DIR) $(DRIVER_INCS) $(INCS) $(DEFS) +CC= gcc + +# $Id: config,v 1.8 2007/10/27 22:55:27 carregal Exp $ diff --git a/testing/luasql-postgres/APKBUILD b/testing/luasql-postgres/APKBUILD deleted file mode 100644 index 36756ca657..0000000000 --- a/testing/luasql-postgres/APKBUILD +++ /dev/null @@ -1,27 +0,0 @@ -# Contributor: Mika Havela -# Maintainer: Mika Havela -pkgname=luasql-postgres -pkgver=2.1.1 -pkgrel=0 -pkgdesc="LuaSQL is a simple interface from Lua to a DBMS" -url="http://www.keplerproject.org/luasql/" -license="MIT" -depends="lua" -makedepends="lua-dev postgresql-dev" -install= -subpackages= -source="http://luaforge.net/frs/download.php/2686/luasql-$pkgver.tar.gz - config.new - " - -build() { - cd "$srcdir/luasql-$pkgver" - cp "$srcdir/config.new" config - - make || return 1 - mkdir -p "$pkgdir"/usr/lib/lua/5.1/luasql - cp src/postgres.so "$pkgdir"/usr/lib/lua/5.1/luasql -} - -md5sums="63bdd57de4b9d1be336ba112d8cb69eb luasql-2.1.1.tar.gz -6ee28fa90394da6a7e38cf507d56ba80 config.new" diff --git a/testing/luasql-postgres/config.new b/testing/luasql-postgres/config.new deleted file mode 100644 index a8650c5511..0000000000 --- a/testing/luasql-postgres/config.new +++ /dev/null @@ -1,59 +0,0 @@ -# Driver (leave uncommented ONLY the line with the name of the driver) -#T= mysql -#T= oci8 -#T= odbc -T= postgres -#T= sqlite -#T=sqlite3 - -# Installation directories - -# Default prefix -PREFIX = /usr - -# System's libraries directory (where binary libraries are installed) -LUA_LIBDIR= $(PREFIX)/lib/lua/5.1 - -# System's lua directory (where Lua libraries are installed) -LUA_DIR= $(PREFIX)/share/lua/5.1 - -# Lua includes directory -LUA_INC= $(PREFIX)/include - -# Lua version number (first and second digits of target version) -LUA_VERSION_NUM= 514 - -# OS dependent -LIB_OPTION= -shared #for Linux -#LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X - -LIBNAME= $T.so -COMPAT_DIR= ../compat/src - -# Compilation parameters -# Driver specific -######## MySQL -#DRIVER_LIBS= -L/usr/local/mysql/lib -lmysqlclient -lz -#DRIVER_INCS= -I/usr/local/mysql/include -######## Oracle OCI8 -#DRIVER_LIBS= -L/home/oracle/OraHome1/lib -lz -lclntsh -#DRIVER_INCS= -I/home/oracle/OraHome1/rdbms/demo -I/home/oracle/OraHome1/rdbms/public -######## PostgreSQL -DRIVER_LIBS= -L/usr/pgsql/lib -lpq -DRIVER_INCS= -I/usr/pgsql/include -######## SQLite -#DRIVER_LIBS= -lsqlite -#DRIVER_INCS= -######## SQLite3 -#DRIVER_LIBS= -L/opt/local/lib -lsqlite3 -#DRIVER_INCS= -I/opt/local/include -######## ODBC -#DRIVER_LIBS= -L/usr/local/lib -lodbc -#DRIVER_INCS= -DUNIXODBC -I/usr/local/include - -WARN= -Wall -Wmissing-prototypes -Wmissing-declarations -ansi -pedantic -INCS= -I$(LUA_INC) -CFLAGS= -O2 $(WARN) -I$(COMPAT_DIR) $(DRIVER_INCS) $(INCS) $(DEFS) -CC= gcc - -# $Id: config,v 1.8 2007/10/27 22:55:27 carregal Exp $ -- cgit v1.2.3