diff options
author | Kevin Dalley <kevind@rahul.net> | 2002-03-15 14:20:02 +0000 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2014-10-03 14:05:02 +0000 |
commit | ac8459519a9ef2a1ee635509b52a653da1bfe9d5 (patch) | |
tree | 9ed2df2144d6ad3bb7cf1d43243d815a8eb90059 /xsane.spec | |
parent | 8b372c9248930ae29763202121434d3d676d0f30 (diff) | |
parent | e7e90b72fd3161c5d55fed49e100781dfa3e9408 (diff) |
Imported Debian patch 0.84-2debian/0.84-2
Diffstat (limited to 'xsane.spec')
-rw-r--r-- | xsane.spec | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/xsane.spec b/xsane.spec new file mode 100644 index 0000000..79ce06a --- /dev/null +++ b/xsane.spec @@ -0,0 +1,43 @@ +%define name xsane +%define version 0.84 +%define release 1 +%define prefix /usr + +Name: %{name} +Version: %{version} +Release: %{release} +Summary: Xsane is a graphical frontend for the scanner library SANE +Group: Graphics +URL: http://www.xsane.org +Buildroot: /var/tmp/%{name}-buildroot +Requires: sane +Source: ftp://ftp.mostang.com/pub/sane/xsane/%{name}-%{version}.tar.gz +Copyright: GPL +BuildRequires: gtk+ >= 1.2.0 libsane1-devel >= 1.0.2 + +%description +Xsane is a grahical frontend for sane. Install this if you want a grahpical +frontend for sane for use in the X Windowing System. + +%prep +%setup -q -n %{name}-%{version} + +%build +CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} +uname -a | grep -qi SMP && make -j 2 || make + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}%{prefix} +make prefix=%{buildroot}%{prefix} install +strip %{buildroot}%{prefix}/bin/* || : + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root) +%doc xsane* +/usr/share/* +/usr/bin/xsane +/usr/man/man1/xsane.1* |