desktop/libgee/PKGBUILD

27 lines
700 B
Bash
Raw Normal View History

# Contributor: Giuseppe Calà <jiveaxe@gmail.com>
# Maintainer: Bruce Liu <brli@users.sourceforge.net>
pkgname=libgee
2016-05-30 02:09:43 +08:00
pkgver=0.18.0
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)
2016-05-30 02:09:43 +08:00
sha256sums=('4ad99ef937d071b4883c061df40bfe233f7649d50c354cf81235f180b4244399')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr --disable-static
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}