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/fribidi.mk

21 lines
686 B

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := fribidi
$(PKG)_WEBSITE := https://fribidi.org/
$(PKG)_DESCR := FriBidi
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.0.8
$(PKG)_CHECKSUM := 94c7b68d86ad2a9613b4dcffe7bbeb03523d63b5b37918bdf2e4ef34195c1e6c
$(PKG)_GH_CONF := fribidi/fribidi/releases,v,,,,.tar.bz2
$(PKG)_DEPS := cc
define $(PKG)_BUILD
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS) \
--disable-debug \
--disable-deprecated \
$(if $(BUILD_STATIC), \
--enable-static )
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= dist_man_MANS=
endef