summaryrefslogtreecommitdiffstats
path: root/rules/glademm.make
blob: 223c11b99b5bc12f8294102b86c691b92adff20c (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
59
60
# -*-makefile-*-
#
# Copyright (C) 2008 by Luotao Fu <l.fu@pengutronix.de>
#               2010 by Michael Olbrich <m.olbrich@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_GLADEMM) += glademm

#
# Paths and names
#
GLADEMM_VERSION	:= 2.6.0
GLADEMM_MD5	:= e88be4e895ff3b99d8ae39e799b714a2
GLADEMM		:= glademm-$(GLADEMM_VERSION)
GLADEMM_SUFFIX	:= tar.gz
GLADEMM_URL	:= http://home.wtal.de/petig/Gtk/$(GLADEMM).$(GLADEMM_SUFFIX)
GLADEMM_SOURCE	:= $(SRCDIR)/$(GLADEMM).$(GLADEMM_SUFFIX)
GLADEMM_DIR	:= $(BUILDDIR)/$(GLADEMM)

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

GLADEMM_PATH	:= PATH=$(CROSS_PATH)
GLADEMM_ENV 	:= $(CROSS_ENV)

#
# autoconf
#
GLADEMM_AUTOCONF := $(CROSS_AUTOCONF_USR)

# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------

$(STATEDIR)/glademm.targetinstall:
	@$(call targetinfo)

	@$(call install_init, glademm)
	@$(call install_fixup, glademm,PRIORITY,optional)
	@$(call install_fixup, glademm,SECTION,base)
	@$(call install_fixup, glademm,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
	@$(call install_fixup, glademm,DESCRIPTION,missing)

	@$(call install_copy, glademm, 0, 0, 0755, -, /usr/bin/glade--)
	@$(call install_copy, glademm, 0, 0, 0755, -, /usr/bin/glademm-embed)

	@$(call install_finish, glademm)

	@$(call touch)

# vim: syntax=make