summaryrefslogtreecommitdiffstats
path: root/rules/fbset.make
diff options
context:
space:
mode:
authorWolfram Sang <w.sang@pengutronix.de>2011-06-24 14:00:39 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2011-06-28 08:59:51 +0200
commit10ea58c81a2330c2b280734506dd768274a09f84 (patch)
tree8c43df7f568a6932e41b3f08c0b1b2a5d03144d4 /rules/fbset.make
parentef115d2ce674ee2238bf7f59b371b56d3232fb64 (diff)
downloadptxdist-10ea58c81a2330c2b280734506dd768274a09f84.tar.gz
ptxdist-10ea58c81a2330c2b280734506dd768274a09f84.tar.xz
fbset: add new package
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/fbset.make')
-rw-r--r--rules/fbset.make55
1 files changed, 55 insertions, 0 deletions
diff --git a/rules/fbset.make b/rules/fbset.make
new file mode 100644
index 000000000..52fc57564
--- /dev/null
+++ b/rules/fbset.make
@@ -0,0 +1,55 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2011 by Sascha Hauer <s.hauer@pengutronix.de>
+# Copyright (C) 2011 by Wolfram Sang <w.sang@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_FBSET) += fbset
+
+#
+# Paths and names
+#
+FBSET_VERSION := 2.1
+FBSET_MD5 := e547cfcbb8c1a4f2a6b8ba4acb8b7164
+FBSET := fbset-$(FBSET_VERSION)
+FBSET_SUFFIX := tar.gz
+FBSET_URL := http://users.telenet.be/geertu/Linux/fbdev/$(FBSET).$(FBSET_SUFFIX)
+FBSET_SOURCE := $(SRCDIR)/$(FBSET).$(FBSET_SUFFIX)
+FBSET_DIR := $(BUILDDIR)/$(FBSET)
+FBSET_LICENSE := GPLv2
+
+# ----------------------------------------------------------------------------
+# Compile
+# ----------------------------------------------------------------------------
+
+FBSET_MAKE_ENV := $(CROSS_ENV)
+FBSET_MAKE_PAR := NO
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/fbset.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, fbset)
+ @$(call install_fixup, fbset,PRIORITY,optional)
+ @$(call install_fixup, fbset,SECTION,base)
+ @$(call install_fixup, fbset,AUTHOR,"Sascha Hauer <s.hauer@pengutronix.de>")
+ @$(call install_fixup, fbset,DESCRIPTION,missing)
+
+ @$(call install_copy, fbset, 0, 0, 0755, -, /usr/sbin/fbset)
+
+ @$(call install_finish, fbset)
+
+ @$(call touch)
+
+# vim: syntax=make