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/xorg-macros.mk

25 lines
946 B

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := xorg-macros
$(PKG)_WEBSITE := https://cgit.freedesktop.org/xorg/util/macros/
$(PKG)_DESCR := X.org utility macros
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.19.0
$(PKG)_CHECKSUM := 2835b11829ee634e19fa56517b4cfc52ef39acea0cd82e15f68096e27cbed0ba
$(PKG)_SUBDIR := util-macros-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2
$(PKG)_URL := https://xorg.freedesktop.org/releases/individual/util/util-macros-$($(PKG)_VERSION).tar.bz2
$(PKG)_DEPS :=
define $(PKG)_UPDATE
$(WGET) -q -O- 'https://cgit.freedesktop.org/xorg/util/macros/refs/tags' | \
$(SED) -n "s,.*<a href='[^']*/tag/?h=util-macros-\\([0-9.]*\\)'.*,\\1,p" | \
$(SORT) -V | \
tail -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure $(MXE_CONFIGURE_OPTS)
$(MAKE) -C '$(1)' -j '$(JOBS)' install pkgconfigdir='$$(libdir)/pkgconfig'
endef