summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Wagie2022-07-19 09:45:54 -0600
committerMark Wagie2022-07-19 09:45:54 -0600
commit20b3c9828ae39daa46cb238403257e120b379f30 (patch)
tree5a02f8d18e517bf610949269ddb8347a44c1377a
parent362e0ad82b8aa4d9f7add0d2cc4762e90dcdb931 (diff)
downloadaur-20b3c9828ae39daa46cb238403257e120b379f30.tar.gz
42.2
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD8
-rw-r--r--workbench.install6
3 files changed, 11 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 736fe940256d..bc1007a2b034 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = workbench
pkgdesc = Learn and prototype with GNOME technologies
- pkgver = 42.1
- pkgrel = 3
+ pkgver = 42.2
+ pkgrel = 1
url = https://github.com/sonnyp/Workbench
install = workbench.install
arch = x86_64
@@ -21,7 +21,7 @@ pkgbase = workbench
optdepends = gtk4-demos: GTK Demo, GTK Widget Factory, GTK Icon Browser
optdepends = highlight: syntax highlighting
optdepends = libadwaita-demos: Adwaita Demo
- source = git+https://github.com/sonnyp/Workbench.git#commit=875b14dfeab14eb4644eb55e50bb9f206c4f84b3
+ source = git+https://github.com/sonnyp/Workbench.git#commit=5b57afabb4e1e0f948a22e2be2adb0a1e89d8240
source = git+https://gitlab.gnome.org/Teams/Design/icon-development-kit-www.git
source = git+https://github.com/sonnyp/troll.git
sha256sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 407b75907241..30d99e0d9cd2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,8 +2,8 @@
# Co-Maintainer: Mark Wagie <mark dot wagie at tutanota dot com>
pkgname=workbench
-pkgver=42.1
-pkgrel=3
+pkgver=42.2
+pkgrel=1
pkgdesc="Learn and prototype with GNOME technologies"
arch=('x86_64')
url="https://github.com/sonnyp/Workbench"
@@ -15,7 +15,7 @@ optdepends=('gtk4-demos: GTK Demo, GTK Widget Factory, GTK Icon Browser'
'highlight: syntax highlighting'
'libadwaita-demos: Adwaita Demo')
install="$pkgname.install"
-_commit=875b14dfeab14eb4644eb55e50bb9f206c4f84b3
+_commit=5b57afabb4e1e0f948a22e2be2adb0a1e89d8240
source=("git+https://github.com/sonnyp/Workbench.git#commit=${_commit}"
'git+https://gitlab.gnome.org/Teams/Design/icon-development-kit-www.git'
'git+https://github.com/sonnyp/troll.git')
@@ -59,7 +59,7 @@ package() {
meson install -C build --destdir "$pkgdir"
# Scalable action icons conflict with numerous other packages
- # Install to doc folder so they can be copied to user space for use
+ # Install to doc folder so they can be symlinked to user space for use
install -d "$pkgdir/usr/share/doc/$pkgname/icons/hicolor/scalable"
mv "$pkgdir/usr/share/icons/hicolor/scalable/actions" \
"$pkgdir/usr/share/doc/$pkgname/icons/hicolor/scalable/"
diff --git a/workbench.install b/workbench.install
index 90ec5261a12f..8ddd34cb7a9c 100644
--- a/workbench.install
+++ b/workbench.install
@@ -1,7 +1,9 @@
post_install() {
- echo "Install scalable action icons locally:"
echo ""
- echo "cp -f /usr/share/doc/workbench/icons/ ~/.local/share/"
+ echo "Symlink scalable action icons for use locally:"
+ echo ""
+ echo "ln -s /usr/share/doc/workbench/icons/hicolor/scalable/actions/* ~/.local/share/icons/hicolor/scalable/actions/"
+ echo ""
}
post_upgrade() {