view src/msys-grep.mk @ 3404:c43915b7e891

Add octave forge quaternion package * Makefile.am: add quaternion to OCTAVE_FORGE_PACKAGES. * build_packages.m: add quaternion package to install. * dist-files.mk: add of-quaternion.mk. * index.html: add of-quaternion-package. * src/quaternion.mk: New file.
author John Donoghue <john.donoghue@ieee.org>
date Sun, 05 Jan 2014 14:44:37 -0500
parents 100e618349f7
children 13be64f9f16d
line wrap: on
line source

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

PKG             := msys-grep
$(PKG)_IGNORE   :=
$(PKG)_CHECKSUM := 69d03c4415c55b9617850a4991d0708fbe3788f6
$(PKG)_REMOTE_SUBDIR := grep/grep-$($(PKG)_VERSION)
$(PKG)_SUBDIR   := 
$(PKG)_FILE     := grep-$($(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