Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(549)

Side by Side Diff: libraries/openal-soft-1.13/nacl-openal-soft-1.13.sh

Issue 11885025: Allow re-targeting of naclports install (Closed) Base URL: http://naclports.googlecode.com/svn/trunk/src
Patch Set: rebase Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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-openal-soft-1.13.sh 7 # nacl-openal-soft-1.13.sh
8 # 8 #
9 # usage: nacl-openal-soft-1.13.sh 9 # usage: nacl-openal-soft-1.13.sh
10 # 10 #
(...skipping 12 matching lines...) Expand all
23 LIB_ARG="-DLIBTYPE=STATIC" 23 LIB_ARG="-DLIBTYPE=STATIC"
24 fi 24 fi
25 25
26 ChangeDir ${NACL_PACKAGES_REPOSITORY}/${PACKAGE_NAME}/build 26 ChangeDir ${NACL_PACKAGES_REPOSITORY}/${PACKAGE_NAME}/build
27 cmake .. -DCMAKE_TOOLCHAIN_FILE=../XCompile-nacl.txt \ 27 cmake .. -DCMAKE_TOOLCHAIN_FILE=../XCompile-nacl.txt \
28 -DNACLCC=${NACLCC} \ 28 -DNACLCC=${NACLCC} \
29 -DNACLCXX=${NACLCXX} \ 29 -DNACLCXX=${NACLCXX} \
30 -DNACLAR=${NACLAR} \ 30 -DNACLAR=${NACLAR} \
31 -DNACL_CROSS_PREFIX=${NACL_CROSS_PREFIX} \ 31 -DNACL_CROSS_PREFIX=${NACL_CROSS_PREFIX} \
32 -DNACL_SDK_ROOT=${NACL_SDK_ROOT} \ 32 -DNACL_SDK_ROOT=${NACL_SDK_ROOT} \
33 -DCMAKE_INSTALL_PREFIX=${NACL_SDK_USR} \ 33 -DCMAKE_INSTALL_PREFIX=${NACLPORTS_PREFIX} \
34 ${LIB_ARG} 34 ${LIB_ARG}
35 35
36 } 36 }
37 37
38 CustomPackageInstall() { 38 CustomPackageInstall() {
39 DefaultPreInstallStep 39 DefaultPreInstallStep
40 DefaultDownloadBzipStep 40 DefaultDownloadBzipStep
41 DefaultExtractBzipStep 41 DefaultExtractBzipStep
42 DefaultPatchStep 42 DefaultPatchStep
43 CustomConfigureStep 43 CustomConfigureStep
44 DefaultBuildStep 44 DefaultBuildStep
45 DefaultInstallStep 45 DefaultInstallStep
46 DefaultCleanUpStep 46 DefaultCleanUpStep
47 } 47 }
48 48
49 CustomPackageInstall 49 CustomPackageInstall
50 exit 0 50 exit 0
51 51
OLDNEW
« no previous file with comments | « libraries/nacl-mounts/nacl-nacl-mounts.sh ('k') | libraries/openssl-1.0.0e/nacl-openssl-1.0.0e.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698