| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 source pkg_info | 6 BUILD_DIR=${SRC_DIR} |
| 7 source ../../build_tools/common.sh | |
| 8 | |
| 9 | 7 |
| 10 InstallStep() { | 8 InstallStep() { |
| 11 Banner "Installing" | 9 Banner "Installing" |
| 12 # copy libs and headers manually | 10 # copy libs and headers manually |
| 13 LogExecute cp src/headers/*.h ${NACLPORTS_INCLUDE} | 11 LogExecute cp src/headers/*.h ${NACLPORTS_INCLUDE} |
| 14 LogExecute cp *.a ${NACLPORTS_LIBDIR} | 12 LogExecute cp *.a ${NACLPORTS_LIBDIR} |
| 15 } | 13 } |
| 16 | |
| 17 | |
| 18 PackageInstall | |
| 19 exit 0 | |
| OLD | NEW |