mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
47 lines
1.3 KiB
Bash
47 lines
1.3 KiB
Bash
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - patch to enable linking with libm to fix FTBFS
|
|
|
|
pkgname=gnome-color-manager
|
|
pkgver=3.32.0
|
|
pkgrel=2
|
|
pkgdesc="GNOME Color Profile Tools"
|
|
url="https://gitlab.gnome.org/GNOME/gnome-color-manager"
|
|
arch=(x86_64)
|
|
license=(GPL2)
|
|
depends=(libcanberra vte3 exiv2 shared-color-targets colord-gtk libexif)
|
|
makedepends=(yelp-tools git appstream-glib meson docbook-utils docbook-sgml perl-sgmls)
|
|
checkdepends=(xorg-server-xvfb)
|
|
optdepends=('argyllcms: color calibration')
|
|
groups=(gnome)
|
|
_commit=4d7296b72c36ab46b5aded52f7fb2ebcae22063a # tags/GNOME_COLOR_MANAGER_3_32_0^0
|
|
source=("git+https://gitlab.gnome.org/GNOME/gnome-color-manager.git#commit=$_commit"
|
|
'0001-set-libm-as-required.patch')
|
|
sha256sums=('SKIP'
|
|
'3fbf13def9b2f71c1ff4d14b205efa21d26ae7b631121e987af77ecdba128f3c')
|
|
|
|
pkgver() {
|
|
cd $pkgname
|
|
git describe --tags | sed 's/^GNOME_COLOR_MANAGER_//;s/_/./g;s/-/+/g'
|
|
}
|
|
|
|
prepare() {
|
|
cd $pkgname
|
|
git apply ../0001-set-libm-as-required.patch
|
|
}
|
|
|
|
build() {
|
|
arch-meson $pkgname build -D packagekit=false
|
|
ninja -C build
|
|
}
|
|
|
|
check() {
|
|
xvfb-run meson test -C build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install -C build
|
|
}
|
|
|
|
# vim:set sw=2 et:
|