buildpkg.sh 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #!/bin/sh
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements. See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. #
  18. # buildpkg.sh: This script builds a Solaris PKG from the source tree
  19. # provided.
  20. PREFIX=/usr/local
  21. TEMPDIR=/var/tmp/$USER/apr-root
  22. rm -rf $TEMPDIR
  23. apr_src_dir=.
  24. while test $# -gt 0
  25. do
  26. # Normalize
  27. case "$1" in
  28. -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  29. *) optarg= ;;
  30. esac
  31. case "$1" in
  32. --with-apr=*)
  33. apr_src_dir=$optarg
  34. ;;
  35. esac
  36. shift
  37. done
  38. if [ -f "$apr_src_dir/configure.ac" ]; then
  39. cd $apr_src_dir
  40. else
  41. echo "The apr source could not be found within $apr_src_dir"
  42. echo "Usage: buildpkg [--with-apr=dir]"
  43. exit 1
  44. fi
  45. ./configure --prefix=$PREFIX
  46. make
  47. make install DESTDIR=$TEMPDIR
  48. rm $TEMPDIR$PREFIX/lib/apr.exp
  49. . build/pkg/pkginfo
  50. cp build/pkg/pkginfo $TEMPDIR$PREFIX
  51. current=`pwd`
  52. cd $TEMPDIR$PREFIX
  53. echo "i pkginfo=./pkginfo" > prototype
  54. find . -print | grep -v ./prototype | grep -v ./pkginfo | pkgproto | awk '{print $1" "$2" "$3" "$4" root bin"}' >> prototype
  55. mkdir $TEMPDIR/pkg
  56. pkgmk -r $TEMPDIR$PREFIX -d $TEMPDIR/pkg
  57. cd $current
  58. pkgtrans -s $TEMPDIR/pkg $current/$NAME-$VERSION-$ARCH-local
  59. gzip $current/$NAME-$VERSION-$ARCH-local
  60. rm -rf $TEMPDIR