-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglu.make
61 lines (50 loc) · 1.5 KB
/
glu.make
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
61
# -*-makefile-*-
#
# Copyright (C) 2013 by Michael Olbrich <[email protected]>
#
# 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_GLU) += glu
#
# Paths and names
#
GLU_VERSION := 9.0.0
GLU_MD5 := be9249132ff49275461cf92039083030
GLU := glu-$(GLU_VERSION)
GLU_SUFFIX := tar.bz2
GLU_URL := ftp://ftp.freedesktop.org/pub/mesa/glu/$(GLU).$(GLU_SUFFIX)
GLU_SOURCE := $(SRCDIR)/$(GLU).$(GLU_SUFFIX)
GLU_DIR := $(BUILDDIR)/$(GLU)
GLU_LICENSE := unknown
# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------
#
# autoconf
#
GLU_CONF_TOOL := autoconf
GLU_CONF_OPT := \
$(CROSS_AUTOCONF_USR) \
--disable-static \
--disable-debug \
--disable-osmesa
# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------
$(STATEDIR)/glu.targetinstall:
@$(call targetinfo)
@$(call install_init, glu)
@$(call install_fixup, glu,PRIORITY,optional)
@$(call install_fixup, glu,SECTION,base)
@$(call install_fixup, glu,AUTHOR,"Michael Olbrich <[email protected]>")
@$(call install_fixup, glu,DESCRIPTION,missing)
@$(call install_lib, glu, 0, 0, 0644, libGLU)
@$(call install_finish, glu)
@$(call touch)
# vim: syntax=make