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
691 B

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