]> git.pld-linux.org Git - packages/z80dasm.git/commitdiff
- new
authorwitekfl <witekfl@poczta.onet.pl>
Wed, 27 Mar 2013 17:50:08 +0000 (18:50 +0100)
committerwitekfl <witekfl@poczta.onet.pl>
Wed, 27 Mar 2013 17:50:08 +0000 (18:50 +0100)
z80dasm.spec [new file with mode: 0644]

diff --git a/z80dasm.spec b/z80dasm.spec
new file mode 100644 (file)
index 0000000..fc47682
--- /dev/null
@@ -0,0 +1,74 @@
+Summary:       Z80 disassembler
+Summary(pl.UTF-8):     Disasembler Z80
+Name:          z80dasm
+Version:       1.1.3
+Release:       1
+License:       GPL v2
+Group:         Development/Tools
+Source0:       http://www.tablix.org/~avian/z80dasm/%{name}-%{version}.tar.gz
+# Source0-md5: 66931f5e94c6722fe381d0b57d7177dd
+URL:           http://www.tablix.org/~avian/blog/articles/z80dasm/
+BuildRequires: rpmbuild(macros) >= 1.213
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Disassembler for the Zilog Z80 microprocessor and compatibles. It can
+be used to reverse engineer programs and operating systems for 1980's
+microcomputers using this processor architecture (for example Sinclar
+ZX80, ZX81, Spectrum, Galaksija and others).
+
+Generated assembly code can be assembled back with any of the
+following:
+
+zasm - Z80 assembler by z80asm - Available at
+http://savannah.nongnu.org/projects/z80asm/
+
+or the original Zilog Z80 assembler.
+
+z80dasm is based largely on dz80 3.0, written by Jan Panteltje
+(available at http://panteltje.com/panteltje/z80/index.html). z80dasm
+was extensively tested, a lot of bugs were fixed and a more UNIX-like
+command line interface was added. See NEWS file for a summary of
+changes.
+
+%description -l pl.UTF-8
+Disasembler dla procesora Z80 i kompatybilnych. Można go wykorzystać
+do inżynierii wstecznej programów i systemów operacyjnych komputerów z
+lat 80-tych XX wieku używających tej architektury procesora (np. ZX80,
+ZX81, ZX Spectrum, Galaksija i inne).
+
+Wygenerowany kod asemblerowy może być z powrotem zasemblowany przy
+użyciu jednego z:
+
+zasm - asembler Z80 napisany przez Güntera Woigka z80asm -
+udostępniony na http://savannah.nongnu.org/projects/z80asm/
+
+lub oryginalnego asemblera Z80 Ziloga.
+
+z80dasm bazuje w dużej mierze na dz80 3.0, napisanego przrz Jana
+Panteltje (kod dostępny pod adresem
+http://panteltje.com/panteltje/z80/index.html). z80dasm był dobrze
+przetestowany, wiele błędów zostało naprawionych i dodany został
+interfejs linii poleceń w stylu Uniksa. Zobacz streszczenie zmian
+w pliku NEWS.
+
+%prep
+%setup -q
+
+%build
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc ChangeLog NEWS README
+%attr(755,root,root) %{_bindir}/z80dasm
+%{_mandir}/man1/z80dasm.1*
This page took 0.106594 seconds and 4 git commands to generate.