wok-next view ORBit2/receipt @ rev 11661
syslinux: help.en (tiny edits)
| author | Paul Issott <paul@slitaz.org> | 
|---|---|
| date | Sun Feb 12 21:27:40 2012 +0000 (2012-02-12) | 
| parents | 9996f5b42665 | 
| children | 380ffe05937a | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="ORBit2"
     4 VERSION="2.14.19"
     5 CATEGORY="development"
     6 SHORT_DESC="A CORBA 2.4-compliant Object Request Broker (ORB)."
     7 MAINTAINER="rcx@zoominternet.net"
     8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
     9 WEB_SITE="http://projects.gnome.org/ORBit2/"
    10 WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
    11 CROSS="bug: Could not check for borked linking while cross-compiling"
    13 DEPENDS="glib libIDL dbus dbus-glib"
    14 BUILD_DEPENDS="glib-dev dbus-dev dbus-glib-dev libIDL pkg-config"
    16 # Rules to configure and make the package.
    17 compile_rules()
    18 {
    19 	cd $src
    20 	./configure \
    21 		--prefix=/usr \
    22 		--build=$HOST_SYSTEM \
    23 		--host=$HOST_SYSTEM &&
    24 	make && make install
    25 }
    27 # Rules to gen a SliTaz package suitable for Tazpkg.
    28 genpkg_rules()
    29 {
    30 	mkdir -p  $fs/usr/lib/orbit-2.0
    31 	cp -a $_pkg/usr/lib/orbit-2.0/*.so* $fs/usr/lib/orbit-2.0
    32 	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    33 	cp -a $_pkg/usr/bin $fs/usr
    34 	rm -f $fs/usr/bin/orbit2-config
    35 }