root/lightcube_os/trunk/packages/gzip/gzip.spec @ 6

Revision 6, 1.8 KB (checked in by jhuntwork, 10 months ago)

Use a more FHS-compatible info directory location

Line 
1Summary: Gzip compression utility
2Name: gzip
3Version: 1.3.13
4Release: 2
5Group: System Environment/Base
6License: GPLv2
7Distribution: LightCube OS
8Vendor: LightCube Solutions
9URL: http://www.gnu.org/software/gzip
10Source: http://dev.lightcube.us/~jhuntwork/sources/%{name}/%{name}-%{version}.tar.gz
11
12Requires: base-layout, glibc
13
14%description
15The GNU zip compression utility.
16
17%prep
18%setup -q
19
20%build
21./configure --prefix=/usr --bindir=/bin
22make
23make check
24
25%install
26make DESTDIR=%{buildroot} install
27mkdir -pv %{buildroot}/usr/bin
28mv -v %{buildroot}/bin/{gzexe,uncompress,zcmp,zdiff,zegrep} %{buildroot}/usr/bin
29mv -v %{buildroot}/bin/{zfgrep,zforce,zgrep,zless,zmore,znew} %{buildroot}/usr/bin
30rm -f %{buildroot}/usr/share/info/dir
31
32%post
33/usr/bin/install-info /usr/share/info/gzip.info /usr/share/info/dir
34
35%preun
36/usr/bin/install-info --delete /usr/share/info/gzip.info /usr/share/info/dir
37
38%clean
39rm -rf %{buildroot}
40
41%files
42%defattr(-,root,root)
43/bin/gunzip
44/bin/gzip
45/bin/zcat
46/usr/bin/gzexe
47/usr/bin/uncompress
48/usr/bin/zcmp
49/usr/bin/zdiff
50/usr/bin/zegrep
51/usr/bin/zfgrep
52/usr/bin/zforce
53/usr/bin/zgrep
54/usr/bin/zless
55/usr/bin/zmore
56/usr/bin/znew
57/usr/share/info/gzip.info
58/usr/share/man/man1/gunzip.1
59/usr/share/man/man1/gzexe.1
60/usr/share/man/man1/gzip.1
61/usr/share/man/man1/zcat.1
62/usr/share/man/man1/zcmp.1
63/usr/share/man/man1/zdiff.1
64/usr/share/man/man1/zforce.1
65/usr/share/man/man1/zgrep.1
66/usr/share/man/man1/zless.1
67/usr/share/man/man1/zmore.1
68/usr/share/man/man1/znew.1
69
70%changelog
71* Fri Oct 30 2009 Jeremy Huntwork <jhuntwork@lightcubesolutions.com> - 1.3.13-2
72- Use FHS compatible info directories
73
74* Sat Oct 24 2009 Jeremy Huntwork <jhuntwork@lightcubesolutions.com> - 1.3.13-1
75- Upgrade to 1.3.13
76
77* Fri Aug 14 2009 Jeremy Huntwork <jhuntwork@lightcubesolutions.com> - 1.3.12-1
78- Initial version
Note: See TracBrowser for help on using the browser.