#!/bin/sh ## Amigo PkgBuild script for: gnome-libs-1.4.1.7 ## Copyright Gilbert Ashley ##### --- -Standard Package Variables------### # Many sources only need these 4 variables set: BUILD="1" NAME="gnome-libs" VERSION="1.4.1.7" SRC_SUFFIX=".tar.bz2" # Set to ".tar.gz" ".tgz" ".tar.bz2" or ".tbz" #####------Example Extras and Options------ # PRE_FIX="" # CONFIG_COMMAND="" EXTRA_CONFIGS="--sysconfdir=/etc" #####-------------Processing----------------------- # Get functions and read in configuration files source /usr/libexec/pkgbuild/FUNCTIONS ; # Call or skip each process individually or use # do_all_processes to substitute these 16 steps: pre_process ; find_source ; make_dirs ; unpack_source ; fix_source_perms ; zcat $CWD/gnome-libs-$VERSION.docspath.diff.gz | patch -p1 --verbose configure_source ; compile_source ; fake_install ; fix_pkg_perms ; strip_bins ; create_docs ; compress_man_pages ; make_description ; make_doinst ; make_package ; post_process ; exit 0 ## See the documentation for help and examples.