2012-11-23 20:57:52 +08:00
|
|
|
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
# Contributor from Arch: Jan de Groot <jgc@archlinux.org>
|
2010-05-18 22:39:29 +08:00
|
|
|
|
|
|
|
pkgname=libbonobo
|
2012-11-23 20:57:52 +08:00
|
|
|
_pkgver=2.32
|
|
|
|
pkgver="${_pkgver}.1"
|
2013-02-28 14:14:28 +08:00
|
|
|
pkgrel=3
|
2010-05-18 22:39:29 +08:00
|
|
|
pkgdesc="A set of language and system independant CORBA interfaces for creating reusable components"
|
2013-02-28 00:59:51 +08:00
|
|
|
arch=('x86_64')
|
2010-05-18 22:39:29 +08:00
|
|
|
license=('GPL' 'LGPL')
|
2012-11-23 20:57:52 +08:00
|
|
|
depends=('orbit2' 'libxml2' 'dbus-glib' 'glib2')
|
2013-02-28 00:59:51 +08:00
|
|
|
makedepends=('intltool' 'pkgconfig')
|
2010-05-18 22:39:29 +08:00
|
|
|
options=('!libtool')
|
|
|
|
backup=('etc/bonobo-activation/bonobo-activation-config.xml')
|
|
|
|
replaces=('bonobo-activation')
|
|
|
|
url="http://www.gnome.org"
|
2013-02-28 00:59:51 +08:00
|
|
|
source=("http://ftp.gnome.org/pub/gnome/sources/libbonobo/${_pkgver}/libbonobo-${pkgver}.tar.bz2"
|
|
|
|
'bonobo-activation-config.xml')
|
2010-05-18 22:39:29 +08:00
|
|
|
install=libbonobo.install
|
2013-02-28 00:59:51 +08:00
|
|
|
md5sums=('27fa902d4fdf6762ee010e7053aaf77b'
|
|
|
|
'6392efaca30a26f826eafc4b8ccbc01f')
|
2010-05-18 22:39:29 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
|
|
--localstatedir=/var --disable-static \
|
2012-11-23 20:57:52 +08:00
|
|
|
--libexecdir=/usr/lib/bonobo
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -m644 "${srcdir}/bonobo-activation-config.xml" "${pkgdir}/etc/bonobo-activation/"
|
2010-05-18 22:39:29 +08:00
|
|
|
}
|