summaryrefslogtreecommitdiff
path: root/community/sqliteman/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/sqliteman/PKGBUILD')
-rw-r--r--community/sqliteman/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/community/sqliteman/PKGBUILD b/community/sqliteman/PKGBUILD
new file mode 100644
index 000000000..83ca34614
--- /dev/null
+++ b/community/sqliteman/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 58342 2011-11-12 08:23:16Z andrea $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: Geoffroy Carrier <geoffroy@archlinux.org>
+# Contributor: Roman Porizka <artee@beer.cz>
+# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
+
+pkgname=sqliteman
+pkgver=1.2.2
+pkgrel=5
+pkgdesc="The best developer's and/or admin's GUI tool for Sqlite3 in the world"
+arch=('i686' 'x86_64' 'mips64el')
+url="http://sqliteman.sf.net"
+license=('GPL')
+depends=('qscintilla')
+makedepends=('cmake')
+install=sqliteman.install
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+md5sums=('5ecdf710e23606e1b924f740ea69306d')
+
+build() {
+ cd "${srcdir}"
+ mkdir build
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release
+ make
+}
+
+package() {
+ cd "${srcdir}"/build
+ make DESTDIR="${pkgdir}" install
+}