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

26 lines
816 B

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := unrtf
$(PKG)_WEBSITE := https://www.gnu.org/software/unrtf/
$(PKG)_DESCR := unRTF
$(PKG)_VERSION := 0.21.9
$(PKG)_CHECKSUM := 22a37826f96d754e335fb69f8036c068c00dd01ee9edd9461a36df0085fb8ddd
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := https://ftp.gnu.org/gnu/$(PKG)/$($(PKG)_FILE)
$(PKG)_DEPS := cc libiconv
define $(PKG)_UPDATE
$(WGET) -q -O- 'https://hg.savannah.gnu.org/hgweb/unrtf/tags' | \
$(SED) -n "s,^release_,,p" | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./bootstrap
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS) \
LIBS='-liconv -lws2_32'
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef