1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- Name: @PACKAGE@
- Summary: Free LZH archive tool
- Version: @VERSION@
- Release: 1
- Source: https://github.com/downloads/fragglet/@PACKAGE@/@PACKAGE@-@[email protected]
- URL: http://fragglet.github.com/lhasa/
- Group: Applications/Archiving
- BuildRoot: /var/tmp/@PACKAGE@-buildroot
- License: ISC license
- Packager: Simon Howard <@PACKAGE_BUGREPORT@>
- Prefix: %{_prefix}
- Autoreq: 0
- %description
- %(cat README)
- See @PACKAGE_URL@ for more information.
- %prep
- rm -rf $RPM_BUILD_ROOT
- %setup -q
- %build
- ./configure \
- --prefix=/usr \
- --exec-prefix=/usr \
- --bindir=/usr/bin \
- --sbindir=/usr/sbin \
- --sysconfdir=/etc \
- --datadir=/usr/share \
- --includedir=/usr/include \
- --libdir=/usr/lib \
- --libexecdir=/usr/lib \
- --localstatedir=/var/lib \
- --sharedstatedir=/usr/com \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info
- make
- %install
- %makeinstall
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %doc %{_mandir}/man1/*
- /usr/bin/*
- /usr/lib*/*
- /usr/include/*/*
|