From: Juergen Beisert <jbe@pengutronix.de>
To: ptxdist@pengutronix.de
Subject: [ptxdist] [PATCH] Add 'libpipeline'
Date: Sun, 25 Dec 2011 18:55:41 +0100 [thread overview]
Message-ID: <201112251855.41806.jbe@pengutronix.de> (raw)
From its README:
libpipeline is a C library for setting up and running pipelines of processes,
without needing to involve shell command-line parsing which is often
error-prone and insecure. This alleviates programmers of the need to
laboriously construct pipelines using lower-level primitives such as fork and
execve.
Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
diff --git a/rules/libpipeline.in b/rules/libpipeline.in
new file mode 100644
index 0000000..03abcdb
--- /dev/null
+++ b/rules/libpipeline.in
@@ -0,0 +1,20 @@
+## SECTION=system_libraries
+
+menuconfig LIBPIPELINE
+ tristate
+ prompt "libpipeline "
+ help
+ libpipeline is a C library for setting up and running pipelines of
+ processes, without needing to involve shell command-line parsing which
+ is often error-prone and insecure. This alleviates programmers of the
+ need to laboriously construct pipelines using lower-level primitives
+ such as fork and execve.
+
+if LIBPIPELINE
+config LIBPIPELINE_SOCKETPAIR
+ bool
+ prompt "Use socketpair"
+ help
+ Use socketpair(2) as fast replacement for pipe(2)
+
+endif
diff --git a/rules/libpipeline.make b/rules/libpipeline.make
new file mode 100644
index 0000000..4228de9
--- /dev/null
+++ b/rules/libpipeline.make
@@ -0,0 +1,75 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2011 by Juergen Beisert <jbe@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_LIBPIPELINE) += libpipeline
+
+#
+# Paths and names
+#
+LIBPIPELINE_VERSION := 1.2.0
+LIBPIPELINE_MD5 := dd3a987a0d2b594716baee2f73d61ae3
+LIBPIPELINE := libpipeline-$(LIBPIPELINE_VERSION)
+LIBPIPELINE_SUFFIX := tar.gz
+LIBPIPELINE_URL := http://download.savannah.gnu.org/releases/libpipeline/$(LIBPIPELINE).$(LIBPIPELINE_SUFFIX)
+LIBPIPELINE_SOURCE := $(SRCDIR)/$(LIBPIPELINE).$(LIBPIPELINE_SUFFIX)
+LIBPIPELINE_DIR := $(BUILDDIR)/$(LIBPIPELINE)
+LIBPIPELINE_LICENSE := GPLv3
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+#
+# autoconf
+#
+LIBPIPELINE_CONF_ENV := $(CROSS_ENV)
+LIBPIPELINE_CONF_TOOL := autoconf
+LIBPIPELINE_CONF_OPT := $(CROSS_AUTOCONF_USR) \
+ --enable-silent-rules \
+ --disable-dependency-tracking \
+ --disable-static \
+ --enable-shared \
+ --enable-fast-install \
+ --enable-threads=posix \
+ --disable-rpath
+
+ifdef PTXCONF_LIBPIPELINE_SOCKETPAIR
+LIBPIPELINE_CONF_OPT += --enable-socketpair-pipe
+# we know it works on our system
+# (but 'configure' cannot check it due to cross compiling)
+LIBPIPELINE_CONF_ENV += pipeline_cv_socketpair_pipe=yes \
+ pipeline_cv_socketpair_mode=yes
+else
+LIBPIPELINE_CONF_OPT += --disable-socketpair-pipe
+endif
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/libpipeline.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, libpipeline)
+ @$(call install_fixup, libpipeline,PRIORITY,optional)
+ @$(call install_fixup, libpipeline,SECTION,base)
+ @$(call install_fixup, libpipeline,AUTHOR,"Juergen Beisert <jbe@pengutronix.de>")
+ @$(call install_fixup, libpipeline,DESCRIPTION,"pipeline manipulation library")
+
+ @$(call install_lib, libpipeline, 0, 0, 0644, libpipeline)
+
+ @$(call install_finish, libpipeline)
+
+ @$(call touch)
+
+# vim: syntax=make
--
Pengutronix e.K. | Juergen Beisert |
Linux Solutions for Science and Industry | http://www.pengutronix.de/ |
--
ptxdist mailing list
ptxdist@pengutronix.de
next reply other threads:[~2011-12-25 17:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-25 17:55 Juergen Beisert [this message]
2012-01-04 9:45 ` Michael Olbrich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201112251855.41806.jbe@pengutronix.de \
--to=jbe@pengutronix.de \
--cc=ptxdist@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox