Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@KenjiTakahashi
Created June 13, 2013 07:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KenjiTakahashi/5771952 to your computer and use it in GitHub Desktop.
Save KenjiTakahashi/5771952 to your computer and use it in GitHub Desktop.
pkgname=libtcejdb
pkgver=1.1.12
pkgrel=1
pkgdesc="Embedded JSON Database engine"
arch=('i686' 'x86_64')
url="http://ejdb.org"
license=('LGPL')
depends=('zlib')
source=("https://github.com/Softmotions/ejdb/archive/v${pkgver}.tar.gz")
md5sums=('90d0d5aa20c80c67ca2fce7babe807c6')
build() {
cd "${srcdir}/ejdb-${pkgver}/tcejdb"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/ejdb-${pkgver}/tcejdb"
make PREFIX=/usr DESTDIR="$pkgdir" install
chmod 644 ${pkgdir}/usr/lib/libtcejdb.a
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment