summaryrefslogtreecommitdiff
path: root/community/sqlheavy/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/sqlheavy/PKGBUILD')
-rwxr-xr-xcommunity/sqlheavy/PKGBUILD18
1 files changed, 8 insertions, 10 deletions
diff --git a/community/sqlheavy/PKGBUILD b/community/sqlheavy/PKGBUILD
index 5803ede93..fc6a0a3f1 100755
--- a/community/sqlheavy/PKGBUILD
+++ b/community/sqlheavy/PKGBUILD
@@ -1,15 +1,14 @@
-# $Id: PKGBUILD 89815 2013-05-02 15:11:19Z alucryd $
+# $Id: PKGBUILD 96517 2013-08-30 22:52:46Z alucryd $
# Maintainer: Maxime Gauduin <alucryd at gmail dot com>
# Contributor : sebikul <sebikul@gmail.com>
pkgname=sqlheavy
pkgver=0.1.1
-pkgrel=6
+pkgrel=7
pkgdesc="GObject SQLite wrapper"
arch=('i686' 'x86_64' 'mips64el')
url="https://code.google.com/p/sqlheavy/"
license=('LGPL')
-conflicts=('sqlheavy-git')
depends=('gtk2' 'sqlite3')
makedepends=('gobject-introspection' 'vala')
options=('!libtool')
@@ -17,22 +16,21 @@ source=("https://sqlheavy.googlecode.com/files/${pkgname}-${pkgver}.tar.xz")
sha256sums=('e8689f5fd4e0baf98eada2b3811262bb99877c2e8586fd21ad2a7ad3acc59031')
prepare() {
- cd "${srcdir}"/${pkgname}-${pkgver}
+ cd ${pkgname}-${pkgver}
- sed -i 's/libvala-0.16/libvala-0.20/' configure
- sed -i '/examples/d
- /utils/d' Makefile.in
+ sed 's/libvala-0.16/libvala-0.20/' -i configure
+ sed '/examples/d; /utils/d' -i Makefile.in
}
build() {
- cd "${srcdir}"/${pkgname}-${pkgver}
+ cd ${pkgname}-${pkgver}
- ./configure --prefix=/usr --disable-static
+ ./configure --prefix='/usr' --disable-static
make
}
package() {
- cd "${srcdir}"/${pkgname}-${pkgver}
+ cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}