summaryrefslogtreecommitdiff
path: root/community/sqlheavy
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-05-03 10:15:48 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2013-05-03 10:15:48 +0200
commitf3a4e8da400567018b5d73b66cd67b8da0d280b8 (patch)
treed5155fde8d7050660d85895ac9cb185c580c9f7e /community/sqlheavy
parent20bbe9abadb460e01df2d5eefabdd199033274a5 (diff)
parent32b069e79cb891e99962cbac53e2950c11ea403f (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/python-simplejson/PKGBUILD community/teeworlds/PKGBUILD core/openldap/PKGBUILD core/zlib/PKGBUILD extra/soprano/PKGBUILD extra/ucommon/PKGBUILD
Diffstat (limited to 'community/sqlheavy')
-rwxr-xr-xcommunity/sqlheavy/PKGBUILD40
1 files changed, 40 insertions, 0 deletions
diff --git a/community/sqlheavy/PKGBUILD b/community/sqlheavy/PKGBUILD
new file mode 100755
index 000000000..43f08fc60
--- /dev/null
+++ b/community/sqlheavy/PKGBUILD
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 89815 2013-05-02 15:11:19Z alucryd $
+# Maintainer: Maxime Gauduin <alucryd at gmail dot com>
+# Contributor : sebikul <sebikul@gmail.com>
+
+pkgname=sqlheavy
+pkgver=0.1.1
+pkgrel=6
+pkgdesc="GObject SQLite wrapper"
+arch=('i686' 'x86_64')
+url="https://code.google.com/p/sqlheavy/"
+license=('LGPL')
+conflicts=('sqlheavy-git')
+depends=('gtk2' 'sqlite3')
+makedepends=('gobject-introspection' 'vala')
+options=('!libtool')
+source=("https://sqlheavy.googlecode.com/files/${pkgname}-${pkgver}.tar.xz")
+sha256sums=('e8689f5fd4e0baf98eada2b3811262bb99877c2e8586fd21ad2a7ad3acc59031')
+
+prepare() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+
+ sed -i 's/libvala-0.16/libvala-0.20/' configure
+ sed -i '/examples/d
+ /utils/d' Makefile.in
+}
+
+build() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+
+ ./configure --prefix=/usr --disable-static
+ make
+}
+
+package() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+
+ make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et: