mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-01 14:52:14 +01:00
Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
# Contributor: August Klein <amatcoder@gmail.com>
|
|
# Maintainer: August Klein <amatcoder@gmail.com>
|
|
pkgname=ghex
|
|
pkgver=3.10.1
|
|
pkgrel=0
|
|
pkgdesc="A hex editor for GNOME"
|
|
url="https://wiki.gnome.org/Apps/Ghex"
|
|
arch="all"
|
|
license="GPL"
|
|
depends="dconf"
|
|
depends_dev="gtk+3.0-dev"
|
|
makedepends="$depends_dev itstool"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-lang $pkgname-doc"
|
|
source="http://ftp.gnome.org/pub/GNOME/sources/ghex/3.10/$pkgname-$pkgver.tar.xz"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--disable-schemas-compile \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" DATADIRNAME=share install || return 1
|
|
}
|
|
|
|
md5sums="bcd5af85a8e127da29257c9ca6aad5ee ghex-3.10.1.tar.xz"
|
|
sha256sums="34b66cb5c84410c420df72f229d25aee5979e58048a246ed719b046f0c241132 ghex-3.10.1.tar.xz"
|
|
sha512sums="bfb7f4af1c36698571ea176fd4bbba2ea11a337a8e02976da6b784bd5cc634a4b853e36918ebaeea382d680e796343838ce4709ac720da86755628894043c28c ghex-3.10.1.tar.xz"
|