# -*-makefile-*- # # Copyright (C) 2004 by Robert Schwebel # 2009 by Marc Kleine-Budde # # For further information about the PTXdist project and license conditions # see the README file. # # # We provide this package # PACKAGES-$(PTXCONF_BONNIEXX) += bonniexx # # Paths and names # BONNIEXX_VERSION := 1.97.3 BONNIEXX_MD5 := e4be8977e8f7e6d4375a8d1dadda8d9e BONNIEXX := bonnie++-$(BONNIEXX_VERSION) BONNIEXX_SUFFIX := tgz BONNIEXX_URL := http://www.coker.com.au/bonnie++/$(BONNIEXX).$(BONNIEXX_SUFFIX) BONNIEXX_SOURCE := $(SRCDIR)/$(BONNIEXX).$(BONNIEXX_SUFFIX) BONNIEXX_DIR := $(BUILDDIR)/$(BONNIEXX) BONNIEXX_LICENSE := GPL-2.0-only BONNIEXX_LICENSE_FILES := \ file://copyright.txt;md5=cd4dde95a6b9d122f0a9150ae9cc3ee0 # ---------------------------------------------------------------------------- # Prepare # ---------------------------------------------------------------------------- BONNIEXX_ENV := \ $(CROSS_ENV) \ bonnie_cv_sys_largefile=$(call ptx/yesno, PTXCONF_GLOBAL_LARGE_FILE) # # autoconf # BONNIEXX_CONF_TOOL := autoconf BONNIEXX_CONF_OPT := \ $(CROSS_AUTOCONF_USR) \ --disable-stripping # ---------------------------------------------------------------------------- # Target-Install # ---------------------------------------------------------------------------- $(STATEDIR)/bonniexx.targetinstall: @$(call targetinfo) @$(call install_init, bonniexx) @$(call install_fixup, bonniexx,PRIORITY,optional) @$(call install_fixup, bonniexx,SECTION,base) @$(call install_fixup, bonniexx,AUTHOR,"Robert Schwebel ") @$(call install_fixup, bonniexx,DESCRIPTION,missing) @$(call install_copy, bonniexx, 0, 0, 0755, -, /usr/sbin/bonnie++) @$(call install_finish, bonniexx) @$(call touch) # vim: syntax=make