packageNativeHadoop.sh
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  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. # packageNativeHadoop.sh - A simple script to help package native-hadoop libraries
  17. #
  18. # Note: 
  19. # This script relies on the following environment variables to function correctly:
  20. #  * BASE_NATIVE_LIB_DIR
  21. #  * BUILD_NATIVE_DIR
  22. #  * DIST_LIB_DIR
  23. # All these are setup by build.xml.
  24. #
  25. TAR='tar cf -'
  26. UNTAR='tar xfBp -'
  27. # Copy the pre-built libraries in $BASE_NATIVE_LIB_DIR
  28. if [ -d $BASE_NATIVE_LIB_DIR ]
  29. then
  30.   for platform in `ls $BASE_NATIVE_LIB_DIR`
  31.   do
  32.     if [ ! -d $DIST_LIB_DIR/$platform ]
  33.     then
  34.       mkdir -p $DIST_LIB_DIR/$platform
  35.       echo "Created $DIST_LIB_DIR/$platform"
  36.     fi
  37.     echo "Copying libraries in $BASE_NATIVE_LIB_DIR/$platform to $DIST_LIB_DIR/$platform/"
  38.     cd $BASE_NATIVE_LIB_DIR/$platform/
  39.     $TAR *hadoop* | (cd $DIST_LIB_DIR/$platform/; $UNTAR)
  40.   done
  41. fi
  42. # Copy the custom-built libraries in $BUILD_DIR
  43. if [ -d $BUILD_NATIVE_DIR ]
  44. then 
  45.   for platform in `ls $BUILD_NATIVE_DIR`
  46.   do
  47.     if [ ! -d $DIST_LIB_DIR/$platform ]
  48.     then
  49.       mkdir -p $DIST_LIB_DIR/$platform
  50.       echo "Created $DIST_LIB_DIR/$platform"
  51.     fi
  52.     echo "Copying libraries in $BUILD_NATIVE_DIR/$platform/lib to $DIST_LIB_DIR/$platform/"
  53.     cd $BUILD_NATIVE_DIR/$platform/lib
  54.     $TAR *hadoop* | (cd $DIST_LIB_DIR/$platform/; $UNTAR)
  55.   done  
  56. fi
  57. #vim: ts=2: sw=2: et