# -*-makefile-*- # # Copyright (C) 2008 by Marc Kleine-Budde # # 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_LIBGSLOOP) += libgsloop # # Paths and names # LIBGSLOOP_VERSION := 0.0.9 LIBGSLOOP_MD5 := baeede921dfd5bf17d3bbdeaa41279c0 LIBGSLOOP := libgsloop-$(LIBGSLOOP_VERSION) LIBGSLOOP_SUFFIX := tar.bz2 LIBGSLOOP_URL := http://www.pengutronix.de/software/libgsloop/download/$(LIBGSLOOP).$(LIBGSLOOP_SUFFIX) LIBGSLOOP_SOURCE := $(SRCDIR)/$(LIBGSLOOP).$(LIBGSLOOP_SUFFIX) LIBGSLOOP_DIR := $(BUILDDIR)/$(LIBGSLOOP) # ---------------------------------------------------------------------------- # Prepare # ---------------------------------------------------------------------------- LIBGSLOOP_PATH := PATH=$(CROSS_PATH) LIBGSLOOP_ENV := $(CROSS_ENV) # # autoconf # LIBGSLOOP_AUTOCONF := $(CROSS_AUTOCONF_USR) # ---------------------------------------------------------------------------- # Target-Install # ---------------------------------------------------------------------------- $(STATEDIR)/libgsloop.targetinstall: @$(call targetinfo) @$(call install_init, libgsloop) @$(call install_fixup, libgsloop,PRIORITY,optional) @$(call install_fixup, libgsloop,SECTION,base) @$(call install_fixup, libgsloop,AUTHOR,"Robert Schwebel ") @$(call install_fixup, libgsloop,DESCRIPTION,missing) @$(call install_lib, libgsloop, 0, 0, 0644, libgsloop) @$(call install_finish, libgsloop) @$(call touch) # vim: syntax=make