mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
27 lines
700 B
Bash
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
|
||
|
}
|