]> git.pld-linux.org Git - packages/cramfs-tools.git/blob - cramfs-tools.spec
Renamed from cramfs and updated to 2.1.
[packages/cramfs-tools.git] / cramfs-tools.spec
1 Summary:        Set of tools which creates and checks cramfs filesytem
2 Summary(pl.UTF-8):      Zestaw narzędzi do tworzenia i sprawdzania systemu plików cramfs
3 Name:           cramfs-tools
4 Version:        2.1
5 Release:        1
6 License:        GPL
7 Group:          Base/Utilities
8 Source0:        https://github.com/npitre/cramfs-tools/archive/refs/tags/v%{version}.tar.gz
9 # Source0-md5:  d056f7a492a2e167a7d03234d1733aca
10 URL:            https://github.com/npitre/cramfs-tools
11 BuildRequires:  zlib-devel
12 Obsoletes:      cramfs
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %define         _sbindir        /sbin
16
17 %description
18 Set of tools which creates and checks cramfs filesystem.
19
20 %description -l pl.UTF-8
21 Zestaw narzędzi do tworzenia i sprawdzania systemu plików cramfs.
22
23 %prep
24 %setup -q
25
26 %build
27 %{__make} \
28         CC="%{__cc}" \
29         CFLAGS="%{rpmcppflags} %{rpmcflags}"
30
31 %install
32 rm -rf $RPM_BUILD_ROOT
33 install -d $RPM_BUILD_ROOT%{_sbindir}
34
35 cp -p mkcramfs cramfsck $RPM_BUILD_ROOT%{_sbindir}
36
37 %clean
38 rm -rf $RPM_BUILD_ROOT
39
40 %files
41 %defattr(644,root,root,755)
42 %doc README NOTES
43 %attr(755,root,root) %{_sbindir}/*
This page took 0.106536 seconds and 4 git commands to generate.