diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/libchamplain/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libchamplain/PKGBUILD')
-rw-r--r-- | extra/libchamplain/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/libchamplain/PKGBUILD b/extra/libchamplain/PKGBUILD new file mode 100644 index 000000000..8580e7e96 --- /dev/null +++ b/extra/libchamplain/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 106959 2011-01-19 21:31:11Z andyrtr $ +# Maintainer: Andreas Radke <andyrtr@archlinux.org> +# Contributor: Michael Kanis <mkanis@gmx.de> + +pkgname=libchamplain +pkgver=0.8.1 +pkgrel=1 +pkgdesc="C library aimed to provide a Gtk+ widget to display rasterized maps" +url="http://projects.gnome.org/libchamplain/" +license=('LGPL') +arch=('i686' 'x86_64') +replaces=('libchamplain-gtk') +options=('!libtool') +depends=('clutter-gtk>=0.10.8' 'libsoup' 'cairo>=1.8' 'sqlite3') +makedepends=('gobject-introspection') +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/0.8/${pkgname}-${pkgver}.tar.bz2) +md5sums=('4490dca0c099cac47ed93796d5bd79fd') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --disable-static + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} |