view src/msys-texinfo.mk @ 3231:ed6444cc0dcb

Fix typo from commit 3218:8ede5874e2f1 * src/qt.mk: change make conditional statement end from 'fi)' to ')'.
author John Donoghue <john.donoghue@ieee.org>
date Sat, 10 Aug 2013 21:50:17 -0400
parents 100e618349f7
children
line wrap: on
line source

# This file is part of MXE.
# See index.html for further information.

PKG             := msys-texinfo
$(PKG)_IGNORE   :=
$(PKG)_CHECKSUM := 
$(PKG)_REMOTE_SUBDIR := texinfo/texinfo-$($(PKG)_VERSION)
$(PKG)_SUBDIR   := 
$(PKG)_FILE     := texinfo-$($(PKG)_VERSION)-msys-1.0.13-bin.tar.lzma
$(PKG)_URL      := $(MSYS_BASE_URL)/$($(PKG)_REMOTE_SUBDIR)/$($(PKG)_FILE)/download
$(PKG)_DEPS     := 

define $(PKG)_UPDATE
    echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
    echo $($(PKG)_VERSION)
endef

define $(PKG)_BUILD
    mkdir -p '$(MSYS_BASE_DIR)'
    cd '$(1)' && tar cf - . | ( cd '$(MSYS_BASE_DIR)'; tar xpf - )
    mkdir -p '$(MSYS_INFO_DIR)'
    cd '$(1)' && find . > '$(MSYS_INFO_DIR)'/$(PKG).list
endef