You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
256 B
10 lines
256 B
#!/bin/sh
|
|
|
|
DYLIBBUNDLER_DIR=/Users/chris/work/macdylibbundler/
|
|
|
|
mkdir -p $1
|
|
mkdir -p $1/bin
|
|
mkdir -p $1/lib
|
|
cp $2 $1/bin
|
|
$DYLIBBUNDLER_DIR/dylibbundler -cd -od -b -p @executable_path/../lib -x $1/bin/storm -d $1/lib
|
|
python packager.py --bin storm --dir $1
|