1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
Summary: Xfce developer tools
Name: @PACKAGE_TARNAME@
Version: @PACKAGE_VERSION@
Release: 1
License: GPL
URL: http://xfce.org/~benny/projects/xfce4-dev-tools/
Source0: %{name}-%{version}.tar.gz
Group: Development/Tools
BuildRoot: %{_tmppath}/%{name}-root
%description:
This package contains common tools required by Xfce developers and people
that want to build Xfce from SVN. In addition, this package contains the
Xfce developer's handbook.
%prep
%setup -q
%build
%configure
make
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir}
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc AUTHORS COPYING ChangeLog HACKING INSTALL NEWS README
%{_bindir}/
%{_datadir}/
|