]> git.pld-linux.org Git - packages/binwalk.git/commitdiff
- initial PLD release auto/th/binwalk-0_3_8-1
authorTomasz Pala <gotar@pld-linux.org>
Sat, 27 Aug 2011 21:31:00 +0000 (21:31 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    binwalk.spec -> 1.1

binwalk.spec [new file with mode: 0644]

diff --git a/binwalk.spec b/binwalk.spec
new file mode 100644 (file)
index 0000000..a8a41fc
--- /dev/null
@@ -0,0 +1,51 @@
+Summary:       Binary image analyze tool
+Name:          binwalk
+Version:       0.3.8
+Release:       1
+License:       MIT
+Group:         Applications/Development
+Source0:       http://binwalk.googlecode.com/files/%{name}-%{version}.tar.gz
+# Source0-md5: bc145f8b9abd5e79d5bc3aecdc0ab829
+URL:           http://code.google.com/p/binwalk/
+BuildRequires: autoconf >= 2.65
+BuildRequires: curl-devel
+BuildRequires: libmagic-devel
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Binwalk is a tool for searching a given binary image for embedded files
+and executable code. Specifically, it is designed for identifying files
+and code embedded inside of firmware images. Binwalk uses the libmagic
+library, so it is compatible with magic signatures created for the Unix
+file utility.
+
+Binwalk also includes a custom magic signature file which contains
+improved signatures for files that are commonly found in firmware
+images such as compressed/archived files, firmware headers, Linux
+kernels, bootloaders, filesystems, etc. 
+
+%prep
+%setup -q
+perl -ne 's/-lz/-lmagic/; print unless /^tar -zxvf \$FILE\.tar\.gz/' -i src/configure.ac
+perl -ne 'print unless /FILE/' -i src/Makefile.in
+
+%build
+cd src
+%{__autoconf}
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} -C src install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc docs/README
+%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}
+%attr(755,root,root) %{_bindir}/%{name}
This page took 0.070615 seconds and 4 git commands to generate.