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

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: 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 16 matching lines...) Expand all
27 LIB_ARG="-DLIBTYPE=STATIC" 27 LIB_ARG="-DLIBTYPE=STATIC"
28 fi 28 fi
29 29
30 ChangeDir ${NACL_PACKAGES_REPOSITORY}/${PACKAGE_NAME}/build 30 ChangeDir ${NACL_PACKAGES_REPOSITORY}/${PACKAGE_NAME}/build
31 cmake .. -DCMAKE_TOOLCHAIN_FILE=../XCompile-nacl.txt \ 31 cmake .. -DCMAKE_TOOLCHAIN_FILE=../XCompile-nacl.txt \
32 -DNACLCC=${NACLCC} \ 32 -DNACLCC=${NACLCC} \
33 -DNACLCXX=${NACLCXX} \ 33 -DNACLCXX=${NACLCXX} \
34 -DNACLAR=${NACLAR} \ 34 -DNACLAR=${NACLAR} \
35 -DNACL_CROSS_PREFIX=${NACL_CROSS_PREFIX} \ 35 -DNACL_CROSS_PREFIX=${NACL_CROSS_PREFIX} \
36 -DNACL_SDK_ROOT=${NACL_SDK_ROOT} \ 36 -DNACL_SDK_ROOT=${NACL_SDK_ROOT} \
37 -DCMAKE_INSTALL_PREFIX=${NACL_SDK_USR} \ 37 -DCMAKE_INSTALL_PREFIX=${NACLPORTS_PREFIX} \
38 ${LIB_ARG} 38 ${LIB_ARG}
39 39
40 } 40 }
41 41
42 CustomPackageInstall() { 42 CustomPackageInstall() {
43 DefaultPreInstallStep 43 DefaultPreInstallStep
44 DefaultDownloadBzipStep 44 DefaultDownloadBzipStep
45 DefaultExtractBzipStep 45 DefaultExtractBzipStep
46 DefaultPatchStep 46 DefaultPatchStep
47 CustomConfigureStep 47 CustomConfigureStep
48 DefaultBuildStep 48 DefaultBuildStep
49 DefaultInstallStep 49 DefaultInstallStep
50 DefaultCleanUpStep 50 DefaultCleanUpStep
51 } 51 }
52 52
53 CustomPackageInstall 53 CustomPackageInstall
54 exit 0 54 exit 0
55 55
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698