summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorKim Kibum <kb0929.kim@samsung.com>2012-05-21 17:49:19 +0900
committerKim Kibum <kb0929.kim@samsung.com>2012-05-21 17:49:19 +0900
commite08857e3903959f080aa407da646feef9273162a (patch)
treedc8dac0ef9c8c01b2ebe7f5744467f8b01a0d503 /packaging
parent0e5b9c4adf619450a7aea27e6bf8d8c753625b1f (diff)
downloadsed-e08857e3903959f080aa407da646feef9273162a.tar.gz
sed-e08857e3903959f080aa407da646feef9273162a.tar.bz2
sed-e08857e3903959f080aa407da646feef9273162a.zip
Upload Tizen:Base source
Diffstat (limited to 'packaging')
-rw-r--r--packaging/sed.changes18
-rw-r--r--packaging/sed.spec48
2 files changed, 66 insertions, 0 deletions
diff --git a/packaging/sed.changes b/packaging/sed.changes
new file mode 100644
index 0000000..54c5d23
--- /dev/null
+++ b/packaging/sed.changes
@@ -0,0 +1,18 @@
+* Tue May 24 2011 Anas Nashif <anas.nashif@intel.com> - 4.1.5
+- Repackage documentaion/translations
+
+* Wed Dec 29 2010 Yan Li <yan.i.li@intel.com> - 4.1.5
+- Revert to version 4.1.5 (BMC#11589)
+
+* Wed Feb 03 2010 Yi Yang <yi.y.yang@intel.com> - 4.2.1
+- Update to 4.2.1
+
+* Thu Sep 18 2008 Yi Yang <yi.y.yang@intel.com> 4.1.5
+- Fix a typo: sed.info.g to sed.info.gz
+
+* Fri Sep 12 2008 Yi Yang <yi.y.yang@intel.com> 4.1.5
+- Remove installation warnings of info files
+
+* Wed Jul 23 2008 Zhang Xin <xing.z.zhang@intel.com>
+- Mark man file and info file as %doc
+
diff --git a/packaging/sed.spec b/packaging/sed.spec
new file mode 100644
index 0000000..cde5fd3
--- /dev/null
+++ b/packaging/sed.spec
@@ -0,0 +1,48 @@
+%define _bindir /bin
+
+Name: sed
+Summary: A GNU stream text editor
+Version: 4.1.5
+Release: 1
+Group: Applications/Text
+License: GPLv2+
+URL: http://sed.sourceforge.net/
+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 -n %{name}-%{version}
+
+
+%build
+
+%configure --disable-static \
+ --without-included-regex \
+ --disable-nls
+
+make %{?jobs:-j%jobs}
+
+%install
+rm -rf %{buildroot}
+%make_install
+
+%remove_docs
+
+
+%check
+make check
+
+%files
+%{_bindir}/sed
+
+