#!/bin/sh #--------------------------------------------------------------- # Project : Mandrake Linux # Module : spec-helper # File : spec-helper # Version : $Id$ # Author : Frederic Lepied # Created On : Wed Feb 9 16:25:21 2000 #--------------------------------------------------------------- if [ -z "$RPM_BUILD_ROOT" ]; then echo "no RPM_BUILD_ROOT variable; exiting." 1>&2 exit 0 fi if [ ! -d $RPM_BUILD_ROOT ]; then exit 0 fi SPEC_HELPER_ROOT=${SPEC_HELPER_ROOT=/usr/share/spec-helper} PATH=$SPEC_HELPER_ROOT:$PATH export PATH # usage usage() { echo "usage: spec-helper [-l|-c|-m|-s|-L]" 1>&2 echo "-c don't clean up files" 1>&2 echo "-m don't compress files" 1>&2 echo "-s don't strip files" 1>&2 echo "-l don't fix full link as relative." 1>&2 echo "-L don't build lib symlinks." 1>&2 echo "-g don't grpintify init scripts." 1>&2 } # handle options while [ $# != 0 ]; do case $1 in -c) DONT_CLEANUP=1;; -m) DONT_COMPRESS=1;; -s) DONT_STRIP=1;; -l) DONT_RELINK=1;; -L) DONT_SYMLINK_LIBS=1;; -g) DONT_GPRINTIFY=1;; *) usage; exit 1;; esac shift done test -z "$DONT_CLEANUP" && echo -n "Cleaning files..." && clean_files && echo "done" test -z "$DONT_COMPRESS" && echo -n "Compressing files..." && compress_files && echo "done" test -z "$DONT_STRIP" && echo -n "Stripping files..." && strip_files && echo "done" test -z "$DONT_RELINK" && echo -n "Relativisation of symlinks..." && relative_me_babe && echo "done" test -z "$DONT_CLEAN_PERL" && echo -n "Clean perl..." && clean_perl && echo "done" test -z "$DONT_SYMLINK_LIBS" && echo -n "Building libraries symlinks..." && lib_symlinks && echo "done" if [ -d $RPM_BUILD_ROOT/etc/rc.d/init.d ]; then test -z "$DONT_GPRINTIFY" && echo -n "Gprintifying init scripts..." && gprintify.py $RPM_BUILD_ROOT/etc/rc.d/init.d/* && echo "done" elif [ -d $RPM_BUILD_ROOT/etc/init.d ]; then test -z "$DONT_GPRINTIFY" && echo -n "Gprintifying init scripts..." && gprintify.py $RPM_BUILD_ROOT/etc/init.d/* && echo "done" fi exit 0 # spec-helper ends here