-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlsuio.make
58 lines (46 loc) · 1.48 KB
/
lsuio.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
# -*-makefile-*-
#
# Copyright (C) 2008 by Wolfram Sang
#
# 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_LSUIO) += lsuio
#
# Paths and names
#
LSUIO_VERSION := 0.2.0
LSUIO_MD5 := 8da82b681c24e6c5b3518c99e7f961d7
LSUIO := lsuio-$(LSUIO_VERSION)
LSUIO_SUFFIX := tar.gz
LSUIO_URL := http://www.osadl.org/projects/downloads/UIO/user/$(LSUIO).$(LSUIO_SUFFIX)
LSUIO_SOURCE := $(SRCDIR)/$(LSUIO).$(LSUIO_SUFFIX)
LSUIO_DIR := $(BUILDDIR)/$(LSUIO)
# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------
LSUIO_PATH := PATH=$(CROSS_PATH)
LSUIO_ENV := $(CROSS_ENV)
#
# autoconf
#
LSUIO_AUTOCONF := $(CROSS_AUTOCONF_USR)
# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------
$(STATEDIR)/lsuio.targetinstall:
@$(call targetinfo)
@$(call install_init, lsuio)
@$(call install_fixup, lsuio,PRIORITY,optional)
@$(call install_fixup, lsuio,SECTION,base)
@$(call install_fixup, lsuio,AUTHOR,"Wolfram Sang <[email protected]>")
@$(call install_fixup, lsuio,DESCRIPTION,missing)
@$(call install_copy, lsuio, 0, 0, 0755, -, /usr/bin/lsuio)
@$(call install_finish, lsuio)
@$(call touch)
# vim: syntax=make