mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
31 lines
701 B
Bash
31 lines
701 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Weng Xuetian <wengxt AT gmail com>
|
|
|
|
pkgname=libgee06
|
|
_pkgname=libgee
|
|
pkgver=0.6.8
|
|
pkgrel=1
|
|
pkgdesc="GObject collection library (legacy)"
|
|
url="http://live.gnome.org/Libgee"
|
|
license=(LGPL2.1)
|
|
arch=(i686 x86_64)
|
|
depends=(glib2)
|
|
makedepends=(gobject-introspection)
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/$_pkgname/${pkgver::3}/$_pkgname-$pkgver.tar.xz)
|
|
sha256sums=('a61f8d796173d41f6144a030d4bd22461f0bb3fa18a3ebe02341b315feebf5d3')
|
|
|
|
build() {
|
|
cd $_pkgname-$pkgver
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $_pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|