mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
819 B
Bash
25 lines
819 B
Bash
# $Id: PKGBUILD 35804 2009-04-17 11:07:45Z douglas $
|
|
# Maintainer: Roman Kyrylych <roman@archlinux.org>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=qof
|
|
pkgver=0.7.5
|
|
pkgrel=1
|
|
pkgdesc="Provides a set of C Language utilities for performing generic structured complex queries"
|
|
arch=('i686' 'x86_64')
|
|
url="http://qof.sourceforge.net"
|
|
license=('GPL')
|
|
depends=('glib2' 'libxml2>=2.5.10')
|
|
source=(http://downloads.sourceforge.net/qof/qof-$pkgver.tar.gz
|
|
qof-0.7.4-remove_spurious_CFLAGS.patch)
|
|
options=('!libtool')
|
|
|
|
build() {
|
|
cd $startdir/src/qof-$pkgver
|
|
patch -p0 < ../qof-0.7.4-remove_spurious_CFLAGS.patch
|
|
./configure --prefix=/usr --disable-sqlite
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|
|
md5sums=('91adad70f0a1da22f5e8c5cfd2b16f22'
|
|
'412ef7f3144a228c75f87beef38cbe4f')
|