summaryrefslogtreecommitdiff
path: root/makedumpfile.spec
diff options
context:
space:
mode:
authorken1_ohmichi <ken1_ohmichi>2008-09-04 09:22:59 +0000
committerken1_ohmichi <ken1_ohmichi>2008-09-04 09:22:59 +0000
commit5f3c6d1521d5b6118ca59cea2664c688431944f6 (patch)
treef1458d8870f8d7c0fd2036f1bce6a4af7c8e9f59 /makedumpfile.spec
parent5b2eb295166652aeeae11b6e5547f4815b4371b9 (diff)
[v1.2.9-11] Add makedumpfile's spec file.
This patch adds the spec file, and user can create the rpm file by rpmbuild command. Signed-off-by: Ken'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp>
Diffstat (limited to 'makedumpfile.spec')
-rw-r--r--makedumpfile.spec42
1 files changed, 42 insertions, 0 deletions
diff --git a/makedumpfile.spec b/makedumpfile.spec
new file mode 100644
index 0000000..230c7eb
--- /dev/null
+++ b/makedumpfile.spec
@@ -0,0 +1,42 @@
+Name: makedumpfile
+Summary: makedumpfile package
+Version: 1.2.9
+Release: 1
+Group: Applications/Text
+License: GPL
+Source: %{name}-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-root
+Distribution: Linux 2.6 or greater
+Packager: Ken'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp>
+ExclusiveOS: Linux
+ExclusiveArch: i386 ia64 ppc ppc64 ppc64pseries ppc64iseries x86_64
+Buildroot: %{_tmppath}/%{name}-root
+BuildRequires: zlib-devel elfutils-devel-static
+
+%description
+makedumpfile package.
+
+%prep
+%setup
+
+%build
+make
+
+%install
+rm -rf %{buildroot}
+mkdir -p %{buildroot}/bin
+mkdir -p %{buildroot}/usr/share/man/man8
+make install DESTDIR=%{buildroot}
+
+%clean
+rm -rf %{buildroot}
+
+%files
+/bin/makedumpfile
+/bin/makedumpfile-R.pl
+/usr/share/man/man8/makedumpfile.8.gz
+
+%changelog
+* Fri Aug 21 2008 Ken'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp>
+- initial release.
+