Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
faust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.11.3.
Show more breadcrumbs
faust group
faust
Commits
84336524
Commit
84336524
authored
1 year ago
by
hhakim
Browse files
Options
Downloads
Patches
Plain Diff
Fix missing hdf5 lib in macOS pkg and replace install path /usr by /opt
parent
4d900541
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
misc/continuous_integration/jobs/macosx/pkg_macos.sh
+2
-2
2 additions, 2 deletions
misc/continuous_integration/jobs/macosx/pkg_macos.sh
with
2 additions
and
2 deletions
misc/continuous_integration/jobs/macosx/pkg_macos.sh
+
2
−
2
View file @
84336524
...
@@ -30,8 +30,8 @@ for f in wrapper/python/_FaustCorePy.cpython-*-darwin.so;do sudo install_name_to
...
@@ -30,8 +30,8 @@ for f in wrapper/python/_FaustCorePy.cpython-*-darwin.so;do sudo install_name_to
otool
-L
wrapper/python/_FaustCorePy.cpython-
*
-darwin
.so
otool
-L
wrapper/python/_FaustCorePy.cpython-
*
-darwin
.so
#'sudo hdiutil create -volname Faust-$FAUST_VERSION-MatlabR2016a-Py2.7 -srcfolder /opt/local/faust -ov -format UDRW faust-$FAUST_VERSION'
#'sudo hdiutil create -volname Faust-$FAUST_VERSION-MatlabR2016a-Py2.7 -srcfolder /opt/local/faust -ov -format UDRW faust-$FAUST_VERSION'
sudo
pkgbuild
--identifier
fr.inria.faust
--version
$FAUST_VERSION
--root
/opt/local/faust
--install-location
/opt/local/faust
--scripts
.
./faust-
$FAUST_VERSION
.pkg
sudo
pkgbuild
--identifier
fr.inria.faust
--version
$FAUST_VERSION
--root
/opt/local/faust
--install-location
/opt/local/faust
--scripts
.
./faust-
$FAUST_VERSION
.pkg
for
FILE
in
$(
find /
usr
/local/lib
!
-iname
"libmatio*"
-maxdepth
1
-mindepth
1
)
;
do
filter_list+
=
"--filter
$(
basename
$FILE
)
"
;
done
;
for
FILE
in
$(
find /
opt
/local/lib
!
-iname
"libmatio*"
-a
!
-iname
"libhdf*"
-maxdepth
1
-mindepth
1
)
;
do
filter_list+
=
"--filter
$(
basename
$FILE
)
"
;
done
;
sudo
pkgbuild
--identifier
fr.inria.faust.matio
--version
1.5.12
--root
/
usr
/local/lib
$filter_list
--install-location
/
usr
/local/lib ./matio-bin-1.5.12.pkg
sudo
pkgbuild
--identifier
fr.inria.faust.matio
--version
1.5.12
--root
/
opt
/local/lib
$filter_list
--install-location
/
opt
/local/lib ./matio-bin-1.5.12.pkg
sudo
pkgbuild
--identifier
fr.inria.faust.openmp
--version
367070
--root
/opt/local/lib/libomp
--install-location
/opt/local/lib/libomp ./libomp-367070.pkg
sudo
pkgbuild
--identifier
fr.inria.faust.openmp
--version
367070
--root
/opt/local/lib/libomp
--install-location
/opt/local/lib/libomp ./libomp-367070.pkg
productbuild
--synthesize
--package
./matio-bin-1.5.12.pkg
--package
libomp-367070.pkg
--package
faust-
$FAUST_VERSION
.pkg ./distribution.plist
productbuild
--synthesize
--package
./matio-bin-1.5.12.pkg
--package
libomp-367070.pkg
--package
faust-
$FAUST_VERSION
.pkg ./distribution.plist
sed
-e
's/\(.*pkg-ref id=.fr.inria.faust".*\)/\1<title>FAµST '
$FAUST_VERSION
'<\/title><license file="licenses.html"\/><readme file="installer_readme.html"\/>/'
distribution.plist
>
tmp.plist
;
mv
tmp.plist distribution.plist
sed
-e
's/\(.*pkg-ref id=.fr.inria.faust".*\)/\1<title>FAµST '
$FAUST_VERSION
'<\/title><license file="licenses.html"\/><readme file="installer_readme.html"\/>/'
distribution.plist
>
tmp.plist
;
mv
tmp.plist distribution.plist
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment