blob: 371881a7f256b35785520c3333e4099e340a79a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: Chris Charabaruk <chris [at] charabaruk [dot] net>
# Contributor: <mumei AT airmail DOT cc>
_pkgname=sqlclient
pkgname=sqlclient
pkgrel=1
pkgver=1.9.0
pkgdesc='Provides a simple interface to SQL databases for GNUstep applications'
arch=('i686' 'x86_64' 'armv7h')
url='https://github.com/gnustep/libs-sqlclient'
license=('GPL')
groups=('gnustep-libs')
depends=('gnustep-base' 'performance')
makedepends=('gcc-objc' 'gnustep-make')
source=(ftp://ftp.gnustep.org/pub/gnustep/libs/SQLClient-$pkgver.tar.gz)
sha256sums=('4de755329874912eafd70d36dc2478c2fc9d6345da30ba2cdb710c35d041ba46')
build() {
cd "SQLClient-$pkgver"
export GNUSTEP_MAKEFILES="$(gnustep-config --variable=GNUSTEP_MAKEFILES)"
make
}
package() {
cd "SQLClient-$pkgver"
make DESTDIR="$pkgdir" install
}
|