#!/bin/sh ## Simple.PkgBuild script for: libbonoboui ## Amigo PkgBuild-0.3 #####---Basic Package Variables-------------------------- BUILD="1" NAME="libbonoboui" VERSION="2.10.1" SRC_SUFFIX=".tar.bz2" # Valid options:".tar.gz" ".tgz" ".tar.bz2" ".tbz" #####---Common Overrides and Options---------------------- # PRE_FIX="" EXTRA_CONFIGS=" --sysconfdir=/etc \ --localstatedir=/var/lib \ --enable-gtk-doc \ --enable-static=no" export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/share/pkgconfig" # DOCLIST="" # GROUP_NAME="" #######----------------Processing------------------------------ # Get functions and read in configuration files source /usr/share/Amigo/PkgBuild/FUNCTIONS ; # This template calls each process individually so you can add # extra instructions between processes, or even leave out steps. pre_process ; find_source ; make_dirs ; unpack_source ; fix_source_perms ; configure_source ; compile_source ; fake_install ; mkdir -p $PKG_DIR/usr/share/pkgconfig cp -a $SRC_DIR/bonobo/libbonoboui-2.0.pc $PKG_DIR/usr/share/pkgconfig fix_pkg_perms ; strip_bins ; create_docs ; compress_man_pages ; make_description ; make_doinst ; make_package ; post_process ; exit 0 ## See the Amigo PkgBuild documentation for help and examples.