Package Details: grun 0.9.3-4

Git Clone URL: https://aur.archlinux.org/grun.git (read-only, click to copy)
Package Base: grun
Description: GTK run dialog
Upstream URL: https://github.com/lrgc/grun
Licenses: GPL2
Submitter: None
Maintainer: boenki
Last Packager: boenki
Votes: 30
Popularity: 0.000000
First Submitted: 2008-01-21 19:40 (UTC)
Last Updated: 2017-05-08 08:41 (UTC)

Required by (0)

Sources (1)

Latest Comments

itamarperdomo commented on 2026-02-19 12:39 (UTC)

I am able to compile this by fixing the warning flags -Wno-incompatible-pointer-types to avoid the error:

grun.c:1039:75: error: passing argument 1 of ‘gdk_pixbuf_new_from_xpm_data’ from incompatible pointer type [-Wincompatible-pointer-types]
 1039 |         gtk_window_set_icon(GTK_WINDOW(win), gdk_pixbuf_new_from_xpm_data(grun2));
      |                                                                           ^~~~~
      |                                                                           |
      |                                                                           char * const*
/usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h:292:55: note: expected ‘const char **’ but argument is of type ‘char * const*’
  292 | GdkPixbuf *gdk_pixbuf_new_from_xpm_data (const char **data);
      |                                          ~~~~~~~~~~~~~^~~~
make[2]: *** [Makefile:555: grun.o] Error 1
make[2]: Leaving directory '/home/general/.cache/yay/grun/src/grun-release_0_9_3'
make[1]: *** [Makefile:631: all-recursive] Error 1
make[1]: Leaving directory '/home/general/.cache/yay/grun/src/grun-release_0_9_3'
make: *** [Makefile:447: all] Error 2
==> ERROR: A failure occurred in build().
    Aborting...

boenki commented on 2017-05-08 08:42 (UTC)

fixed

HisDudeness commented on 2017-05-06 08:35 (UTC)

This does not work right now. First, it complains about line 18: cd: grun-0.9.3: No such file or directory because in the PKGBUILD the folder name is obviously indicated as "$pkgname-$pkgver", but the extracted folder name is grun-release_0_9_3. However, there seems not to be any CONFIGURE file in that folder so, even replacing every "$pkgname-$pkgver" in the PKGBUILD with grun-release_0_9_3, it complains about line 19: ./configure: No such file or directory The INSTALL and README files inside did not help me.