mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-14 12:21:47 +01:00
28 lines
760 B
Plaintext
28 lines
760 B
Plaintext
# Contributor: August Klein <amatcoder@gmail.com>
|
|
# Maintainer: August Klein <amatcoder@gmail.com>
|
|
pkgname=ghex
|
|
pkgver=3.18.4
|
|
_pkgver=${pkgver%.*}
|
|
pkgrel=0
|
|
pkgdesc="A hex editor for GNOME"
|
|
url="https://wiki.gnome.org/Apps/Ghex"
|
|
arch="all"
|
|
license="GPL-2.0-or-later"
|
|
depends="dconf"
|
|
makedepends="meson itstool gtk+3.0-dev glib-dev atk-dev"
|
|
subpackages="$pkgname-dev $pkgname-lang $pkgname-doc"
|
|
source="https://download.gnome.org/sources/ghex/$_pkgver/ghex-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
meson \
|
|
--prefix=/usr \
|
|
. output
|
|
ninja -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" ninja -C output install
|
|
}
|
|
|
|
sha512sums="6121a5986ee7d7f96bf7f401e155f8aa37f076af455bc68e43d1b5b02b63bc9aed3eba5209511d1b659eb4c9093ab5d9601c14a5e868d979e92a6d0ca0cf9ce2 ghex-3.18.4.tar.xz"
|