libyaml: update and disable programs

This commit is contained in:
Tony Theodore 2020-06-04 20:39:47 +10:00
parent 1bd0388aee
commit 17ae8f8a11
1 changed files with 5 additions and 6 deletions

View File

@ -4,16 +4,15 @@ PKG := libyaml
$(PKG)_WEBSITE := https://github.com/yaml/libyaml
$(PKG)_DESCR := A C library for parsing and emitting YAML.
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.2.4
$(PKG)_CHECKSUM := 02265e0229675aea3a413164b43004045617174bdb2c92bf6782f618f8796b55
$(PKG)_VERSION := 0.2.5
$(PKG)_CHECKSUM := fa240dbf262be053f3898006d502d514936c818e422afdcf33921c63bed9bf2e
$(PKG)_GH_CONF := yaml/libyaml/releases/latest
$(PKG)_DEPS := cc
define $(PKG)_BUILD
cd '$(SOURCE_DIR)' && ./bootstrap
cd '$(BUILD_DIR)' && \
$(SOURCE_DIR)/configure \
cd '$(BUILD_DIR)' && $(SOURCE_DIR)/configure \
$(MXE_CONFIGURE_OPTS)
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)'
$(MAKE) -C '$(BUILD_DIR)' -j 1 install
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' $(MXE_DISABLE_PROGRAMS)
$(MAKE) -C '$(BUILD_DIR)' -j 1 install $(MXE_DISABLE_PROGRAMS)
endef