]> git.pld-linux.org Git - packages/uncc.git/blame - uncc.spec
- disabled dead URLs; use savannah project page as URL (but no files there)
[packages/uncc.git] / uncc.spec
CommitLineData
1fa105dd 1Summary: A C decompiler
72ed8555 2Summary(pl.UTF-8): Dekompilator C
1fa105dd 3Name: uncc
4Version: 0.1.2.1
96d374b9 5Release: 2
1fa105dd 6License: GPL
7Group: Development/Debuggers
ec8a918c
JB
8#Source0: http://www.uncc.info/%{name}-%{version}.tar.gz
9Source0: %{name}-%{version}.tar.gz
1fa105dd 10# Source0-md5: 57eeedd1c37a9046238f9967a4183603
ec8a918c
JB
11#URL: http://www.uncc.info/
12URL: http://savannah.nongnu.org/projects/uncc/
1fa105dd 13BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15%description
16uncc is a C decompiler still. With this software the C source of a
17program can be rebuilt (almost) automatically just having its already
18compiled executable. The decompilation process is made with the
19objdump disassembler. The uncc engine takes an assembly source file as
20input and, through a series of recognition algorithms and expression
21composition, it outputs a comparable C program out of it.
22
5d0b9239
JR
23%description -l pl.UTF-8
24uncc jest dekompilatorem C. Przy jego użyciu można (prawie)
25automatycznie odtworzyć źródła programu, do którego mamy tylko już
25783296 26skompilowany program wykonywalny. Proces dekompilacji jest wykonywany
5d0b9239
JR
27przez disasembler objdump. Silnik uncc bierze źródło asemblera z
28wejścia i poprzez szereg algorytmów rozpoznawania i składania wyrażeń
29odtwarza porównywalny program w C.
1fa105dd 30
31%prep
32%setup -q
33
34%build
e83864a5
JB
35%{__make} \
36 CC="%{__cc}" \
37 CFLAGS="%{rpmcflags} -Wall"
1fa105dd 38
39%install
40rm -rf $RPM_BUILD_ROOT
41install -D %{name} $RPM_BUILD_ROOT%{_bindir}/%{name}
96d374b9 42install -D test/dasm.pl $RPM_BUILD_ROOT%{_bindir}/dasm.pl
1fa105dd 43
44%clean
45rm -rf $RPM_BUILD_ROOT
46
47%files
48%defattr(644,root,root,755)
96d374b9 49%doc docs/* BUGS TODO AUTHORS
1fa105dd 50%attr(755,root,root) %{_bindir}/*
This page took 0.086768 seconds and 4 git commands to generate.