Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions get-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@ OPUS_URL="https://github.com/pkgforge-dev/llvm-libs-debloated/releases/download/
echo "Installing build dependencies..."
echo "---------------------------------------------------------------"
pacman -Syu --noconfirm \
base-devel \
curl \
desktop-file-utils \
fontconfig \
freetype2 \
git \
libxcb \
libxcursor \
libxi \
libxkbcommon \
libxkbcommon-x11 \
libxrandr \
libxtst \
pulseaudio \
pulseaudio-alsa \
qt5-base \
wget \
xorg-server-xvfb \
base-devel \
curl \
fontconfig \
freetype2 \
git \
libxcb \
libxcursor \
libxi \
libxkbcommon \
libxkbcommon-x11 \
libxrandr \
libxtst \
pulseaudio \
pulseaudio-alsa \
qt5-base \
qt5ct \
wget \
xorg-server-xvfb \
zsync


Expand Down
11 changes: 11 additions & 0 deletions puddletag-appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,17 @@ mkdir -p ./AppDir && (

./sharun -g

# add qt5ct for custom theming
echo "Adding qt5ct..."
mkdir -p \
./lib/python*/site-packages/PyQt5/Qt5/plugins/styles \
./lib/python*/site-packages/PyQt5/Qt5/plugins/platformthemes

cp -v /usr/lib/libqt5ct* ./lib
cp -v /usr/lib/qt/plugins/styles/libqt5ct-style.so ./lib/python*/site-packages/PyQt5/Qt5/plugins/styles
cp -v /usr/lib/qt/plugins/platformthemes/libqt5ct.so ./lib/python*/site-packages/PyQt5/Qt5/plugins/platformthemes

echo "Adding icon and desktop entry..."
wget "$ICON" -O ./puddletag.svg
cp -v ./puddletag.svg ./.DirIcon

Expand Down