diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2022-03-17 20:57:55 +1300 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-03-18 00:26:11 +0700 |
commit | 9950d39b87f12c64bb068321f9edc00ed05aadf3 (patch) | |
tree | d117d12b4e143f1e572f315171438c5505aadefd /academic/fiji | |
parent | 54e005540872307c4e1fe820e7d2657e85684673 (diff) |
academic/fiji: Fix source name on 32bit.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'academic/fiji')
-rw-r--r-- | academic/fiji/fiji.SlackBuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/academic/fiji/fiji.SlackBuild b/academic/fiji/fiji.SlackBuild index bd77b87968a7..9f97499f6989 100644 --- a/academic/fiji/fiji.SlackBuild +++ b/academic/fiji/fiji.SlackBuild @@ -64,7 +64,7 @@ fi if [ "$ARCH" = "x86_64" ]; then SUFFIX=linux64 else - SUFFIX=inux32 + SUFFIX=linux32 fi rm -rf $PKG @@ -114,7 +114,6 @@ cp -a \ jars \ java \ lib \ - licenses \ luts \ macros \ plugins \ @@ -124,6 +123,12 @@ cp -a \ $PRGNAM \ $PKG/opt/$PRGNAM +if [ "$ARCH" = "x86_64" ]; then + cp -a \ + licenses \ + $PKG/opt/$PRGNAM +fi + # If a file called "ImageJ2.desktop" is not present in the directory # of fiji, it will create (and re-create it if you delete it) the file # "~/.local/share/applications/ImageJ2.desktop" upon start. So, let it |