summaryrefslogtreecommitdiffstats
path: root/e2tools.spec
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2007-12-14 16:08:25 +0100
committerHans Ulrich Niedermann <hun@n-dimensional.de>2007-12-14 16:08:25 +0100
commit6749719af90afe9544db14bdd8e2742926f1439c (patch)
tree9bb8edef05f9625be2ccd9bce5cb245af63effc4 /e2tools.spec
downloade2tools-6749719af90afe9544db14bdd8e2742926f1439c.tar.gz
e2tools-6749719af90afe9544db14bdd8e2742926f1439c.tar.xz
e2tools-6749719af90afe9544db14bdd8e2742926f1439c.zip
Upstream's 0.0.16v0.0.16upstream
Diffstat (limited to 'e2tools.spec')
-rw-r--r--e2tools.spec52
1 files changed, 52 insertions, 0 deletions
diff --git a/e2tools.spec b/e2tools.spec
new file mode 100644
index 0000000..00d5971
--- /dev/null
+++ b/e2tools.spec
@@ -0,0 +1,52 @@
+Summary: Tools to access files on an unmounted ext2 filesystem
+Name: e2tools
+Version: 0.0.16
+Release: 1
+Copyright: GPL
+Group: Applications/filesystems
+Source0: http://ksheff.net/sw/e2tools/%{name}-%{version}.tar.gz
+Patch1: e2tools.diff
+BuildRoot: /var/tmp/%{name}-root
+Prefix: /usr
+Packager: Keith W. Sheffield <sheff@pobox.com>
+Requires: e2fsprogs > 1.25
+BuildRequires: e2fsprogs-devel > 1.25
+
+%description
+E2tools is a simple set of GPL'ed utilities to read, write, and manipulate
+files in an ext2/ext3 filesystem. I wrote these tools in order to copy files
+into a linux filesystem on a machine that does not have ext2 support. Of
+course, they can also be used on a linux machine to read/write to disk images
+or floppies without having to mount them.
+
+
+%prep
+%setup
+
+chmod 755 configure
+autoconf
+
+%build
+./configure --prefix=$RPM_BUILD_ROOT/usr
+make
+%install
+rm -rf $RPM_BUILD_ROOT
+make install
+mv -f $RPM_BUILD_ROOT/usr/bin $RPM_BUILD_ROOT/usr/sbin
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+%attr(755,root,root) /usr/sbin/
+%doc README TODO COPYING ChangeLog
+
+%changelog
+* Tue Apr 06 2004 Keith Sheffield
+- Updated version due to bug fix release.
+* Wed Jul 09 2003 Keith Sheffield
+- autoconfiscated the build system
+* Thu Aug 08 2002 Ralf Spenneberg <ralf@spenneberg.de>
+- first release
+