diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-02-05 17:52:34 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-02-05 17:52:34 +0100 |
commit | 21c4996c71d76b01a4333ef9905589b3fffa687d (patch) | |
tree | bbf41aa6c88d6875181f0089273567f47fb58209 /feh.spec.in |
Initial commit (upstream 1.3.4)
Diffstat (limited to 'feh.spec.in')
-rw-r--r-- | feh.spec.in | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/feh.spec.in b/feh.spec.in new file mode 100644 index 0000000..fb63a58 --- /dev/null +++ b/feh.spec.in @@ -0,0 +1,43 @@ +Summary: Image viewer using Imlib 2 +Name: @PACKAGE@ +Version: @VERSION@ +Release: 1 +Copyright: BSD +Group: Amusements/Graphics +Source: %{name}-%{version}.tar.gz +Url: http://www.linuxbrit.co.uk +BuildRoot: /var/tmp/%{name}-%{version}-root + +%description +feh is a versatile and fast image viewer using imlib2, the +premier image file handling library. feh has many features, +from simple single file viewing, to multiple file modes using +a slideshow or multiple windows. feh supports the creation of +montages as index prints with many user-configurable options. + +%prep +%setup + +%build +export CFLAGS="$RPM_OPT_FLAGS" +%{configure} --prefix=%{_prefix} --bindir=%{_bindir} \ + --mandir=%{_mandir} --datadir=%{_datadir} + +make CFLAGS="$RPM_OPT_FLAGS" + +%install +rm -rf $RPM_BUILD_ROOT +make DESTDIR=$RPM_BUILD_ROOT install + +%files +%defattr(-, root, root) +%{_bindir}/* +%{_mandir}/* +%{_datadir}/%{name}/* + +%doc AUTHORS ChangeLog README TODO + +%changelog +* Wed Aug 23 2000 Calum Selkirk <cselkirk@sophix.uklinux.net> +- removed the double entry for doc + |