ghex: update to 42.3

This commit is contained in:
oreo639 2022-04-17 12:47:39 -07:00 committed by Michal Vasilek
parent cb9f8198fe
commit 1ec40cb0bd
2 changed files with 22 additions and 9 deletions

View File

@ -1566,7 +1566,7 @@ libmediaart-2.0.so.0 libmediaart-1.9.1_1
libinput.so.10 libinput-1.2.0_1 libinput.so.10 libinput-1.2.0_1
libuhttpmock-0.0.so.0 uhttpmock-0.2.0_1 libuhttpmock-0.0.so.0 uhttpmock-0.2.0_1
libgfbgraph-0.2.so.0 gfbgraph-0.2.2_1 libgfbgraph-0.2.so.0 gfbgraph-0.2.2_1
libgtkhex-3.so.0 libgtkhex-3.10.0_1 libgtkhex-4.so.0 libgtkhex-42.1_1
libgdlmm-3.0.so.2 libgdlmm-3.7.3_1 libgdlmm-3.0.so.2 libgdlmm-3.7.3_1
libdmraid.so.1 dmraid-1.0.0.rc16.3_5 libdmraid.so.1 dmraid-1.0.0.rc16.3_5
libdovecot.so.0 dovecot-2.3.13_3 libdovecot.so.0 dovecot-2.3.13_3

View File

@ -1,17 +1,25 @@
# Template file for 'ghex' # Template file for 'ghex'
pkgname=ghex pkgname=ghex
version=3.18.4 version=42.3
revision=1 revision=1
build_style=meson build_style=meson
hostmakedepends="pkg-config gtk-update-icon-cache intltool itstool glib-devel" build_helper=gir
makedepends="gtk+3-devel iso-codes glib-devel" configure_args="-Dintrospection=$(vopt_if gir enabled disabled)
$(vopt_bool gtk_doc gtk_doc)"
hostmakedepends="pkg-config iso-codes gettext itstool glib-devel
desktop-file-utils $(vopt_if gtk_doc gi-docgen)"
makedepends="gtk4-devel"
depends="hicolor-icon-theme desktop-file-utils iso-codes" depends="hicolor-icon-theme desktop-file-utils iso-codes"
short_desc="Simple binary editor for GNOME" short_desc="Simple binary editor for GNOME"
maintainer="Orphaned <orphan@voidlinux.org>" maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-only, GFDL-1.1-only" license="GPL-2.0-only, GFDL-1.1-only"
homepage="http://www.gnome.org" homepage="https://gitlab.gnome.org/GNOME/ghex"
changelog="https://gitlab.gnome.org/GNOME/ghex/-/raw/ghex-42/NEWS"
distfiles="${GNOME_SITE}/ghex/${version%.*}/ghex-$version.tar.xz" distfiles="${GNOME_SITE}/ghex/${version%.*}/ghex-$version.tar.xz"
checksum=c2d9c191ff5bce836618779865bee4059db81a3a0dff38bda3cc7a9e729637c0 checksum=add40f8ab24921db30d27be58f00273201977d87fdc8d79eceadfa8b0e354def
build_options="gir gtk_doc"
build_options_default="gir gtk_doc"
libgtkhex_package() { libgtkhex_package() {
short_desc+=" - runtime library" short_desc+=" - runtime library"
@ -19,14 +27,19 @@ libgtkhex_package() {
vmove usr/lib/*.so.* vmove usr/lib/*.so.*
} }
} }
ghex-devel_package() { ghex-devel_package() {
depends="gtk+3-devel libgtkhex>=${version}_${revision}" depends="gtk4-devel libgtkhex>=${version}_${revision}"
short_desc+=" - development files" short_desc+=" - development files"
pkg_install() { pkg_install() {
vmove usr/include vmove usr/include
vmove usr/lib/pkgconfig vmove usr/lib/pkgconfig
vmove usr/lib/*.so vmove usr/lib/*.so
#vmove usr/share/gtk-doc if [ "$build_option_gir" ]; then
#vmove usr/share/ghex/gir-1.0 vmove usr/share/gir-1.0
fi
if [ "$build_option_gtk_doc" ]; then
vmove usr/share/doc
fi
} }
} }