summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorholybaechu2024-03-16 17:53:33 +0900
committerholybaechu2024-03-16 17:53:33 +0900
commit70bcaa2d015fbbb95b1afe4da76c5e431517da9e (patch)
tree8479444768120329c2cbbc770e5029387534f528
parentb6a090cfcf750246c9bbf73066bc4fcb83bb9b39 (diff)
downloadaur-70bcaa2d015fbbb95b1afe4da76c5e431517da9e.tar.gz
Fix error while copying icons
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD11
2 files changed, 7 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0f1c2ef6cf67..fd99bb98f75c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = labymod-appimage
pkgdesc = A minecraft Launcher & modpack that optimizes the game and adds a bunch of useful features ! (1.8.9->1.20.4)
pkgver = 2.0.12
- pkgrel = 2
+ pkgrel = 3
url = https://www.labymod.net
arch = x86_64
license = unknown
diff --git a/PKGBUILD b/PKGBUILD
index 5404ac0a80b3..d59a66c4b1fa 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,7 +14,7 @@
pkgname=labymod-appimage
_pkgname=labymodlauncher
pkgver=2.0.12
-pkgrel=2
+pkgrel=3
pkgdesc='A minecraft Launcher & modpack that optimizes the game and adds a bunch of useful features ! (1.8->1.20.1)'
url=https://www.labymod.net
arch=(x86_64)
@@ -52,13 +52,14 @@ package() {
# Icon images
install -dm755 "${pkgdir}/usr/share/"
- ln -s \
- "${pkgdir}/usr/share" \
- "/opt/${_pkgname}/usr/share/icons"
+ #cp -a \
+ # "${pkgdir}/usr/share" \
+ # "/opt/${_pkgname}/usr/share/icons"
- # Symlink executable
+ # Symlink executable
install -dm755 "${pkgdir}/usr/bin"
ln -s \
"/opt/${_pkgname}/labymodlauncher" \
"${pkgdir}/usr/bin/${_pkgname}"
}
+