# -*-makefile-*- # # Copyright (C) 2004 by Robert Schwebel # 2010 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_NANO) += nano # # Paths and names # NANO_VERSION := 1.3.12 NANO_MD5 := 1450892aac7ae31d00817d42636d9a0d NANO := nano-$(NANO_VERSION) NANO_SUFFIX := tar.gz NANO_URL := http://www.nano-editor.org/dist/v1.3/$(NANO).$(NANO_SUFFIX) NANO_SOURCE := $(SRCDIR)/$(NANO).$(NANO_SUFFIX) NANO_DIR := $(BUILDDIR)/$(NANO) # ---------------------------------------------------------------------------- # Get # ---------------------------------------------------------------------------- $(NANO_SOURCE): @$(call targetinfo) @$(call get, NANO) # ---------------------------------------------------------------------------- # Prepare # ---------------------------------------------------------------------------- NANO_PATH := PATH=$(CROSS_PATH) NANO_ENV := $(CROSS_ENV) # # autoconf # NANO_AUTOCONF := $(CROSS_AUTOCONF_USR) # ---------------------------------------------------------------------------- # Target-Install # ---------------------------------------------------------------------------- $(STATEDIR)/nano.targetinstall: @$(call targetinfo) @$(call install_init, nano) @$(call install_fixup, nano,PRIORITY,optional) @$(call install_fixup, nano,SECTION,base) @$(call install_fixup, nano,AUTHOR,"Robert Schwebel ") @$(call install_fixup, nano,DESCRIPTION,missing) @$(call install_copy, nano, 0, 0, 0755, -, /usr/bin/nano) @$(call install_finish, nano) @$(call touch) # vim: syntax=make