]> git.pld-linux.org Git - packages/elftoaout.git/commitdiff
almost raw
authorJan Rękorajski <baggins@pld-linux.org>
Thu, 19 Aug 1999 20:07:25 +0000 (20:07 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    elftoaout.spec -> 1.1

elftoaout.spec [new file with mode: 0644]

diff --git a/elftoaout.spec b/elftoaout.spec
new file mode 100644 (file)
index 0000000..984f910
--- /dev/null
@@ -0,0 +1,41 @@
+Summary: A utility for converting ELF binaries to a.out binaries.
+Name: elftoaout
+Version: 2.2
+Release: 3
+ExclusiveArch: sparc sparc64
+Copyright: GPL
+Group: System Environment/Kernel
+Source: ftp://sunsite.mff.cuni.cz/OS/Linux/Sparc/local/elftoaout/elftoaout-2.2.tgz
+BuildRoot: /var/tmp/%{name}-root
+
+%description
+The elftoaout utility converts a static ELF binary to a static a.out
+binary.  If you're using an ELF system (i.e., Red Hat Linux) on a SPARC,
+you'll need to run elftoaout on the kernel image so that the SPARC PROM
+can netboot the image.
+
+If you're installing Red Hat Linux on a SPARC, you'll need to install the
+elftoaout package.
+
+%prep
+%setup -q
+
+%build
+make
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+mkdir -p $RPM_BUILD_ROOT/usr/bin
+install -m 0755 -s elftoaout $RPM_BUILD_ROOT/usr/bin/elftoaout
+
+mkdir -p $RPM_BUILD_ROOT/usr/man/man1
+install -m 0644 elftoaout.1 $RPM_BUILD_ROOT/usr/man/man1/elftoaout.1
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+/usr/bin/elftoaout
+/usr/man/man1/elftoaout.1
This page took 0.086492 seconds and 4 git commands to generate.