]> git.pld-linux.org Git - packages/e3.git/blob - e3.spec
bbfdd43dcb87de16b519a33dab2d6e650d665128
[packages/e3.git] / e3.spec
1 Summary:        Tiny edytor
2 Summary(pl):    Mikroedytorek
3 Name:           e3
4 Version:        1.3
5 Release:        1
6 License:        GPL
7 Group:          Applications/Editors
8 Source0:        %{name}-%{version}.tar.gz
9 Patch0:         %{name}-makefile.patch
10 #URL:           
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12 ExclusiveArch:  %{ix86}
13
14 %description
15 Small bootloader
16
17 %prep
18 %setup  -q
19 %patch0
20
21 %build
22 %{__make}
23
24 %install
25 rm -rf $RPM_BUILD_ROOT
26 install -d $RPM_BUILD_ROOT%{_bindir}
27 install -d $RPM_BUILD_ROOT%{_mandir}/man1
28 install e3 $RPM_BUILD_ROOT%{_bindir}
29 install e3 $RPM_BUILD_ROOT%{_bindir}
30 install e3.man $RPM_BUILD_ROOT%{_mandir}/man1/e3.1
31 for i in ws em pi vi ne; do ln -sf e3 $RPM_BUILD_ROOT%{_bindir}/e3${i}; done
32
33 %clean
34 rm -rf $RPM_BUILD_ROOT
35
36 %files
37 %defattr(644,root,root,755)
38 %attr(755,root,root) %{_bindir}/*
39 %{_mandir}/man1/*
This page took 0.089555 seconds and 2 git commands to generate.