You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/pangomm.mk

26 lines
922 B

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := pangomm
$(PKG)_WEBSITE := https://www.pango.org/
$(PKG)_DESCR := Pangomm
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.34.0
$(PKG)_CHECKSUM := 0e82bbff62f626692a00f3772d8b17169a1842b8cc54d5f2ddb1fec2cede9e41
$(PKG)_SUBDIR := pangomm-$($(PKG)_VERSION)
$(PKG)_FILE := pangomm-$($(PKG)_VERSION).tar.xz
$(PKG)_URL := https://download.gnome.org/sources/pangomm/$(call SHORT_PKG_VERSION,$(PKG))/$($(PKG)_FILE)
$(PKG)_DEPS := cc cairomm glibmm pango
define $(PKG)_UPDATE
$(WGET) -q -O- 'https://gitlab.gnome.org/GNOME/pangomm/tags' | \
$(SED) -n "s,.*<a [^>]\+>v\?\([0-9]\+\.[0-9.]\+\)<.*,\1,p" | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS) \
MAKE=$(MAKE)
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
endef