mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 08:21:49 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Maintainer: Natanael Copa <natanael.copa@gmail.com>
 | |
| _luaver=5.2
 | |
| pkgname=lua$_luaver-sql-postgres
 | |
| pkgver=2.3.0
 | |
| pkgrel=0
 | |
| pkgdesc="Lua $_luaver SQL driver for postgresql"
 | |
| url="http://www.keplerproject.org/luasql/"
 | |
| arch="all"
 | |
| license="MIT"
 | |
| depends=""
 | |
| makedepends="lua$_luaver-dev postgresql-dev"
 | |
| install=
 | |
| subpackages=
 | |
| source="luasql-$pkgver.tar.gz::https://github.com/keplerproject/luasql/archive/v$pkgver.tar.gz"
 | |
| 
 | |
| _driver=postgres
 | |
| _pkg=libpq
 | |
| 
 | |
| build() {
 | |
| 	cd "$srcdir"/luasql-$pkgver
 | |
| 	local _libs="$( pkg-config $_pkg --libs )" || return 1
 | |
| 	local _lua_cflags="$( pkg-config lua$_luaver --cflags )" || return 1
 | |
| 	make CFLAGS="-fPIC $CFLAGS $_lua_cflags" \
 | |
| 		T=$_driver \
 | |
| 		DRIVER_LIBS="$_libs" \
 | |
| 		|| return 1
 | |
| }
 | |
| 
 | |
| package() {
 | |
| 	cd "$srcdir"/luasql-$pkgver
 | |
| 	install -D src/$_driver.so \
 | |
| 		"$pkgdir"/usr/lib/lua/$_luaver/luasql/$_driver.so \
 | |
| 		|| return 1
 | |
| }
 | |
| 
 | |
| md5sums="af9f0f3a2313a1fcf88c40700092048d  luasql-2.3.0.tar.gz"
 | |
| sha256sums="e173ff7b17a2757951b4b2f67d3b1bfe04caad7185b68cffa7758ce822e25e9f  luasql-2.3.0.tar.gz"
 | |
| sha512sums="62309cf6241ffab1ed32e718536a5c986168a7bb6fcf2cf55e884db5043d5ec473bbbb7c93b399dfc0a19f282e850f742452583ad0d973661a7f672b0f8da2d5  luasql-2.3.0.tar.gz"
 |