mkxp-sunshine/libraries.rb
Pera Pisar 28face2167 Linux changes (#62)
* Added RPATH to executable; lowercased name; fixed MRIVERSION option; made it look like an actual executable

* Silencing some compiler warnings

* Getting rid of journal binding header, fixing bugs with the Niko binding and synchronizing the two

* Journal update to fix several bugs

* Fix libpng warning by running mogrify on shrimp.png

* Improved automation of the Linux build

* Improved some aspects of wallpaper handling

* Bump default Ruby version to 2.5
2019-04-21 03:50:20 -07:00

13 lines
185 B
Ruby

#!/usr/bin/ruby
#encoding: utf-8
require 'fileutils'
line = gets
files = []
while line
if line =~ / => (\/.*) \(/
files << $1
end
line = gets
end
FileUtils.cp(files, 'libs')