Package Details: seer-gdb 2.4-1

Git Clone URL: https://aur.archlinux.org/seer-gdb.git (read-only, click to copy)
Package Base: seer-gdb
Description: A gui frontend to gdb
Upstream URL: https://github.com/epasveer/seer.git
Licenses: GPL-3.0-or-later
Provides: seergdb
Submitter: tytan652
Maintainer: tytan652
Last Packager: tytan652
Votes: 4
Popularity: 0.000847
First Submitted: 2022-07-05 05:17 (UTC)
Last Updated: 2024-03-19 10:30 (UTC)

Latest Comments

epasveer commented on 2022-08-26 20:40 (UTC)

A heads up.

I will be renaming the Seer binary from "seer" to "seergdb". A few people have mentioned my choice of name has a conflict with another opensource project with the same "seer" name.

The github page/project will stay the same.

The seer icons will be renamed from:

../resources/seer_64x64.png to  ../resourcs/seergdb_64x64.png

The seer desktop file will be updated to refer to "seergdb".

../resources/seer.desktop

Sorry for any inconvenience. Hopefully this helps with distributions.

Any comments can be added to the discussion here. There is a tar-file attached that can be used to test with.

https://github.com/epasveer/seer/issues/82

Thanks,

--ernie

yochananmarqos commented on 2022-07-19 22:32 (UTC)

@patlefort: A for loop is much more efficient:

  for icon_size in 32 64 128 256 512; do
    icons_dir="usr/share/icons/hicolor/${icon_size}x${icon_size}/apps"
    install -Dm644 "src/resources/${pkgname}_${icon_size}x${icon_size}.png" \
      "$pkgdir/${icons_dir}/$pkgname.png"
  done

patlefort commented on 2022-07-19 18:14 (UTC)

Hi, proposed patch to add desktop file and icons:

diff --git a/PKGBUILD b/PKGBUILD
index bcebb94..cc7e84a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -22,6 +22,15 @@ build() {
 package() {
        cd "$srcdir/build"
         cmake --install . --strip --prefix "$pkgdir/usr/"
+        
+        cd "$srcdir/${pkgname}/src/resources"
+        install -Dm644 'seer_32x32.png' "$pkgdir/usr/share/icons/hicolor/32x32/apps/seer.png"
+        install -Dm644 'seer_64x64.png' "$pkgdir/usr/share/icons/hicolor/64x64/apps/seer.png"
+        install -Dm644 'seer_128x128.png' "$pkgdir/usr/share/icons/hicolor/128x128/apps/seer.png"
+        install -Dm644 'seer_256x256.png' "$pkgdir/usr/share/icons/hicolor/256x256/apps/seer.png"
+        install -Dm644 'seer_512x512.png' "$pkgdir/usr/share/icons/hicolor/512x512/apps/seer.png"
+        
+        install -Dm644 'seer.desktop' -t "$pkgdir/usr/share/applications"
 }