summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKendall Garner2023-09-25 18:53:17 -0700
committerKendall Garner2023-09-25 18:53:17 -0700
commit25ac0caa8f95186d8fc94f0763d139e718d3e1b9 (patch)
treeb0f396eb32aac2cd75e6b2267210c6deab89137a
parent60ef21c76774deca40a44624f64d9f3bd575f0a3 (diff)
downloadaur-25ac0caa8f95186d8fc94f0763d139e718d3e1b9.tar.gz
fix icon
-rw-r--r--.SRCINFO2
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD4
3 files changed, 8 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7b11c5d1f1bd..fee1e9b620bd 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = feishin-appimage
pkgdesc = A modern self-hosted music player.
pkgver = 0.4.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/jeffvli/feishin
arch = x86_64
license = GPL3
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..b2b826fb22ea
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+*
+!.gitignore
+!.SRCINFO
+!.PKGBUILD \ No newline at end of file
diff --git a/PKGBUILD b/PKGBUILD
index eaaed5a963e9..6ebc433dfd7e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=feishin-appimage
pkgver=0.4.0
-pkgrel=1
+pkgrel=2
pkgdesc="Sonixd Rewrite"
arch=('x86_64')
url="https://github.com/jeffvli/feishin"
@@ -34,6 +34,8 @@ package() {
# install icons
install -dm755 "${pkgdir}/usr/share/icons"
cp -dpr --no-preserve=ownership "squashfs-root/usr/share/icons" "${pkgdir}/usr/share"
+ # In 0.4.0 the only image directory is 0x0, move it to the right one
+ mv "${pkgdir}/usr/share/icons/hicolor/0x0" "${pkgdir}/usr/share/icons/hicolor/512x512"
chmod -R 755 "${pkgdir}/usr/share/icons"
find "${pkgdir}/usr/share/icons" -type f -name "feishin.png" -exec chmod 644 {} \;