mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:17:14 +08:00
29 lines
684 B
Bash
29 lines
684 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=orbit2
|
|
pkgver=2.14.19
|
|
pkgrel=2
|
|
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
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/ORBit2-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|