# -*-makefile-*- # # Copyright (C) 2004 by Benedikt Spranger # 2009 by Marc Kleine-Budde # 2011 by Michael Olbrich # # See CREDITS for details about who has contributed to this project. # # For further information about the PTXdist project and license conditions # see the README file. # # # We provide this package # PACKAGES-$(PTXCONF_HEXEDIT) += hexedit # # Paths and names # HEXEDIT_VERSION := 1.2.12 HEXEDIT_MD5 := 0d2f48610006278cd93359fea9a06d5c HEXEDIT := hexedit-$(HEXEDIT_VERSION) HEXEDIT_SUFFIX := src.tgz HEXEDIT_URL := http://rigaux.org/$(HEXEDIT).$(HEXEDIT_SUFFIX) HEXEDIT_SOURCE := $(SRCDIR)/$(HEXEDIT).$(HEXEDIT_SUFFIX) HEXEDIT_DIR := $(BUILDDIR)/$(HEXEDIT) HEXEDIT_LICENSE := GPL-2.0+ # # autoconf # HEXEDIT_CONF_TOOL := autoconf # ---------------------------------------------------------------------------- # Target-Install # ---------------------------------------------------------------------------- $(STATEDIR)/hexedit.targetinstall: @$(call targetinfo) @$(call install_init, hexedit) @$(call install_fixup, hexedit,PRIORITY,optional) @$(call install_fixup, hexedit,SECTION,base) @$(call install_fixup, hexedit,AUTHOR,"Robert Schwebel ") @$(call install_fixup, hexedit,DESCRIPTION,missing) @$(call install_copy, hexedit, 0, 0, 0755, -, /usr/bin/hexedit) @$(call install_finish, hexedit) @$(call touch) # vim: syntax=make