desktop/libgee/PKGBUILD
2014-07-21 19:14:51 +00:00

27 lines
700 B
Bash

# Contributor: Giuseppe Calà <jiveaxe@gmail.com>
# Maintainer: Bruce Liu <brli@users.sourceforge.net>
pkgname=libgee
pkgver=0.15.3
pkgrel=1
pkgdesc="GObject collection library"
url="http://live.gnome.org/Libgee"
license=('LGPL2.1')
arch=('i686' 'x86_64')
depends=('glib2')
makedepends=('gobject-introspection' 'vala')
options=('!libtool')
source=(http://ftp.gnome.org/pub/GNOME/sources/libgee/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
sha256sums=('1c84dc4e0e64af4e628309c94180fbaf9a743ab045c46cb61702c39b25f1b6d4')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr --disable-static
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}