mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 01:47:16 +08:00
23 lines
664 B
Bash
23 lines
664 B
Bash
# $Id: PKGBUILD 74305 2010-03-30 18:41:08Z ibiru $
|
|
# Maintainer: Jan de Groot <jan@archlinux.org>
|
|
|
|
pkgname=orbit2
|
|
pkgver=2.14.19
|
|
pkgrel=1
|
|
pkgdesc="Thin/fast CORBA ORB"
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL' 'GPL')
|
|
depends=('libidl2>=0.8.11')
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool' '!makeflags')
|
|
url="http://www.gnome.org"
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/ORBit2/2.14/ORBit2-${pkgver}.tar.bz2)
|
|
sha256sums=('55c900a905482992730f575f3eef34d50bda717c197c97c08fa5a6eafd857550')
|
|
|
|
build() {
|
|
cd "${srcdir}/ORBit2-${pkgver}"
|
|
./configure --prefix=/usr --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|