diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/sqlheavy | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/sqlheavy')
-rwxr-xr-x | community/sqlheavy/PKGBUILD | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/community/sqlheavy/PKGBUILD b/community/sqlheavy/PKGBUILD deleted file mode 100755 index 43f08fc60..000000000 --- a/community/sqlheavy/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# $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: |