OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 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 | 6 |
7 # nacl-install-linux-ports-2.sh | 7 # nacl-install-linux-ports-2.sh |
8 # | 8 # |
9 # usage: nacl-install-linux-ports-2.sh | 9 # usage: nacl-install-linux-ports-2.sh |
10 # | 10 # |
(...skipping 22 matching lines...) Expand all Loading... |
33 BuildPackage faad | 33 BuildPackage faad |
34 BuildPackage tinyxml | 34 BuildPackage tinyxml |
35 BuildPackage mesa | 35 BuildPackage mesa |
36 BuildPackage cfitsio | 36 BuildPackage cfitsio |
37 BuildPackage boost | 37 BuildPackage boost |
38 BuildPackage protobuf | 38 BuildPackage protobuf |
39 BuildPackage gc | 39 BuildPackage gc |
40 BuildPackage x264 | 40 BuildPackage x264 |
41 BuildPackage thttpd | 41 BuildPackage thttpd |
42 | 42 |
43 echo "@@@BUILD_STEP ${NACL_PACKAGES_BITSIZE}-bit Summary@@@" | 43 echo "@@@BUILD_STEP ${NACL_ARCH} Summary@@@" |
44 if [[ $RESULT != 0 ]] ; then | 44 if [[ $RESULT != 0 ]] ; then |
45 echo "@@@STEP_FAILURE@@@" | 45 echo "@@@STEP_FAILURE@@@" |
46 fi | 46 fi |
47 | 47 |
48 echo -e "$MESSAGES" | 48 echo -e "$MESSAGES" |
49 | 49 |
50 exit $RESULT | 50 exit $RESULT |
OLD | NEW |