add packaging
authorAnas Nashif <anas.nashif@intel.com>
Tue, 6 Nov 2012 21:58:25 +0000 (13:58 -0800)
committerNicolas Zingilé <nicolas.zingile@open.eurogiciel.org>
Fri, 12 Dec 2014 13:34:47 +0000 (14:34 +0100)
Change-Id: I04ab4f44ab378ca067b056f6967cefa159907a3c

packaging/sed.spec [new file with mode: 0644]

diff --git a/packaging/sed.spec b/packaging/sed.spec
new file mode 100644 (file)
index 0000000..3a8dc39
--- /dev/null
@@ -0,0 +1,47 @@
+#
+# Please submit bugfixes or comments via http://bugs.tizen.org/
+#
+
+Name:           sed
+Version:        4.1.5
+Release:        1
+License:        GPL-2.0+
+Summary:        A GNU stream text editor
+Url:            http://sed.sourceforge.net/
+Group:          Applications/Text
+Source0:        ftp://ftp.gnu.org/pub/gnu/sed/sed-%{version}.tar.gz
+
+%description
+The sed (Stream EDitor) editor is a stream or batch (non-interactive)
+editor.  Sed takes text as input, performs an operation or set of
+operations on the text and outputs the modified text.  The operations
+that sed performs (substitutions, deletions, insertions, etc.) can be
+specified in a script file or from the command line.
+
+%prep
+%setup -q
+
+
+%build
+
+%configure --disable-static \
+    --without-included-regex \
+    --bindir=%{_bindir} \
+    --disable-nls
+
+make %{?_smp_mflags}
+
+%check
+make check
+
+
+%install
+%make_install
+
+%remove_docs
+
+
+%files
+%{_bindir}/sed
+
+