diff options
Diffstat (limited to 'content/posts/bitwig-studio-on-fedora-32')
-rw-r--r-- | content/posts/bitwig-studio-on-fedora-32/index.org | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/content/posts/bitwig-studio-on-fedora-32/index.org b/content/posts/bitwig-studio-on-fedora-32/index.org index 7337b12..15deac3 100644 --- a/content/posts/bitwig-studio-on-fedora-32/index.org +++ b/content/posts/bitwig-studio-on-fedora-32/index.org @@ -54,7 +54,7 @@ Error: Transaction test error: #+END_SRC This seems to be the case with every package I've tried converting -with =alien=, it seems to be a bug that's cropped up since its last +with =alien=, it appears to be a bug that's cropped up since its last release in 2016. It's caused by =alien= leaving the paths =/= and =/usr/bin= in the @@ -106,13 +106,13 @@ After this we build a binary package using =rpmbuild=. sudo rpmbuild --buildroot=/path/to/bitwig-studio-3.2.3/ -bb bitwig-studio-3.2.3-2.spec #+END_SRC -You must specify the full path for the =--buildroot== argument. +You must specify the full path in the =--buildroot== argument. The created =.rpm= package should now be up a directory, next to the initial =.deb= file. To install it we run #+BEGIN_SRC shell -cd .. +cd .. # go up to where the rpm is located sudo dnf install bitwig-studio-3.2.3-2.x86_64.rpm #+END_SRC @@ -121,7 +121,7 @@ fail to start, complaining that =libbz2.so.1.0= was missing. This could be solved by creating a symbolic link to the system's version. #+BEGIN_SRC shell -sudo ln -s /usr/lib64/libbz2.so.1 /opt/bitwig-studio/lib/bitwig-studio/ +sudo ln -s /usr/lib64/libbz2.so.1 /opt/bitwig-studio/lib/bitwig-studio/libbz2.so.1.0 #+END_SRC It doesn't seem to be an issue with the latest release, but I'll leave |