summaryrefslogtreecommitdiffstats
path: root/rules/libgsloop.make
blob: 949b384c8de447b7eb5f71ffff387f3ffb266dba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*-makefile-*-
#
# Copyright (C) 2008 by Marc Kleine-Budde <mkl@pengutronix.de>
#
# 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 <r.schwebel@pengutronix.de>")
	@$(call install_fixup, libgsloop,DESCRIPTION,missing)

	@$(call install_lib, libgsloop, 0, 0, 0644, libgsloop)

	@$(call install_finish, libgsloop)

	@$(call touch)

# vim: syntax=make