mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-13 12:55:00 -05:00
11 lines
312 B
Bash
11 lines
312 B
Bash
#!/bin/sh
|
|
|
|
# link filebot command
|
|
ln -sf /usr/share/filebot/bin/filebot.sh /usr/bin/filebot
|
|
|
|
# link system JNA library
|
|
ln -sf /usr/share/java/jna.jar /usr/share/filebot/jar/jna.jar
|
|
|
|
# patch various JNA options to make system JNA work
|
|
sed -i 's/jna.nosys=true/jna.nosys=false/g' /usr/share/filebot/bin/filebot.sh
|