mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
8 lines
199 B
Bash
8 lines
199 B
Bash
#!/bin/sh
|
|
java=/usr/bin/java
|
|
dir=/usr/share/mesquite
|
|
|
|
cp -r "$dir/../Resources/com/"* "$dir/com/" >& /dev/null
|
|
$java -Djava.library.path=lib -Djri.ignore.ule="yes" -cp "$dir" mesquite.Mesquite $*
|
|
|
|
|