1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
#!/usr/bin/env ruby
#--
# This file is part of Sonic Pi: http://sonic-pi.net
# Full project source: https://github.com/samaaron/sonic-pi
# License: https://github.com/samaaron/sonic-pi/blob/master/LICENSE.md
#
# Copyright 2013, 2014, 2015, 2016 by Sam Aaron (http://sam.aaron.name).
# All rights reserved.
#
# Permission is granted for use, copying, modification, and
# distribution of modified versions of this work as long as this
# notice is included.
#++
# This file will build all native dependencies required by the vendored
# libraries. Ensure you execute this file with the specific version of
# Ruby you intend to package with Sonic Pi.
require 'fileutils'
require 'rbconfig'
ruby_api = RbConfig::CONFIG['ruby_version']
os = case RUBY_PLATFORM
when /.*arm.*-linux.*/
:raspberry
when /.*linux.*/
:linux
when /.*darwin.*/
:osx
when /.*mingw.*/
:windows
else
RUBY_PLATFORM
end
native_dir = File.dirname(__FILE__) + "/../rb-native/#{ruby_api}"
puts "Clearing #{native_dir}"
FileUtils.rm_rf native_dir
puts "Creating #{native_dir}"
FileUtils.mkdir_p native_dir
# Rugged is used for storing the user's ruby music scripts in Git
# FFI is used for MIDI lib support
native_ext_dirs = [
File.expand_path(File.dirname(__FILE__) + '/../vendor/rugged-0.28.4.1/ext/rugged'),
File.expand_path(File.dirname(__FILE__) + '/../vendor/ffi-1.11.3/ext/ffi_c/'),
File.expand_path(File.dirname(__FILE__) + '/../vendor/atomic/ext'),
File.expand_path(File.dirname(__FILE__) + '/../vendor/ruby-prof-0.15.8/ext/ruby_prof/'),
File.expand_path(File.dirname(__FILE__) + '/../vendor/interception/ext/')
]
if os == :osx
native_ext_dirs += [
File.expand_path(File.dirname(__FILE__) + '/../vendor/narray-0.6.1.1/'),
File.expand_path(File.dirname(__FILE__) + '/../vendor/ruby-coreaudio-0.0.12-patched/ext/coreaudio/')
]
end
native_ext_dirs.each do |ext_dir|
if ext_dir.is_a? Array
ext_dir, tgt_dir = *ext_dir
else
tgt_dir = ""
end
puts "Compiling native extension in #{ext_dir}"
Dir.chdir(ext_dir) do
`#{RbConfig.ruby} extconf.rb`
`make clean`
`make`
end
libs = []
case os
when :raspberry
libs = Dir[ext_dir + '/*.{so}']
when :linux
libs = Dir[ext_dir + '/*.{so}']
when :osx
libs = Dir[ext_dir + '/*.{bundle}']
when :windows
libs = Dir[ext_dir + '/*.{so}']
end
libs.each do |f|
tgt = "#{native_dir}/#{tgt_dir}"
FileUtils.mkdir_p tgt
puts "Copying #{f} to #{tgt}"
FileUtils.cp f, tgt
end
end
|