diff options
author | Tim Biermann <tbier@posteo.de> | 2020-05-25 21:42:19 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2020-05-25 23:06:44 +0000 |
commit | 15780e87ddec70baa6d82f40218f17f0242be88c (patch) | |
tree | 27be30631e2808eb4ef52fea0fdc4c7ba770ead0 /geany/Pkgfile | |
parent | 23b8536644320a58bb6952a216870d5ddc4d9ea2 (diff) | |
download | contrib-15780e87ddec70baa6d82f40218f17f0242be88c.tar.gz contrib-15780e87ddec70baa6d82f40218f17f0242be88c.tar.xz |
[notify] geany: changed dependency from gtk to gtk3; fixed missing files in footprint
Diffstat (limited to 'geany/Pkgfile')
-rw-r--r-- | geany/Pkgfile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/geany/Pkgfile b/geany/Pkgfile index e175096db..2dc869c9f 100644 --- a/geany/Pkgfile +++ b/geany/Pkgfile @@ -1,8 +1,8 @@ -# Description: gtk2 text editor with syntax highlighting -# URL: http://www.geany.org/ +# Description: gtk3 text editor with syntax highlighting +# URL: https://www.geany.org/ # Maintainer: Jan-Michael Franz, jmf at mesecons dot net # Packager: Hannes Mayer, kontakt at ecarux dot de -# Depends on: gtk +# Depends on: gtk3 xorg-libxcomposite xorg-libxcursor xorg-libxinerama # Nice to have: vte name=geany @@ -14,9 +14,10 @@ build () { cd $name-$version ./configure --prefix=/usr \ + --enable-gtk3 \ --enable-plugins make make DESTDIR=$PKG install - rm -rf $PKG/usr/share/{doc,locale} + rm -r $PKG/usr/share/{doc,locale} } |