# $Id: PKGBUILD 81006 2012-12-09 15:39:03Z andrea $ # Maintainer: Sergej Pupykin # Contributor: Geoffroy Carrier # Contributor: Roman Porizka # Contributor: Daniel J Griffiths pkgname=sqliteman pkgver=1.2.2 pkgrel=6 pkgdesc="The best developer's and/or admin's GUI tool for Sqlite3 in the world" arch=('i686' 'x86_64') url="http://sqliteman.com/" license=('GPL') depends=('qscintilla') makedepends=('cmake') install=sqliteman.install source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz") md5sums=('5ecdf710e23606e1b924f740ea69306d') build() { mkdir build cd build cmake ../${pkgname}-${pkgver} \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release make } package() { cd build make DESTDIR="${pkgdir}" install }