You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.2 KiB
64 lines
1.2 KiB
17 years ago
|
# Note that this is NOT a relocatable package
|
||
11 years ago
|
%define _missing_doc_files_terminate_build 0
|
||
|
%{!?_rel:%{expand:%%global _rel 0.enl%{?dist}}}
|
||
|
|
||
|
%define ver @VERSION@
|
||
|
%define rel %{_rel}
|
||
17 years ago
|
%define prefix /usr
|
||
|
|
||
|
Summary: expedite
|
||
|
Name: expedite
|
||
|
Version: %ver
|
||
|
Release: %rel
|
||
11 years ago
|
License: BSD
|
||
17 years ago
|
Group: System Environment/Desktops
|
||
|
Source: ftp://ftp.enlightenment.org/pub/enlightenment/expedite-%{ver}.tar.gz
|
||
|
BuildRoot: /var/tmp/expedite-root
|
||
|
Packager: The Rasterman <raster@rasterman.com>
|
||
|
URL: http://www.enlightenment.org/
|
||
|
BuildRequires: evas-devel
|
||
|
Requires: evas
|
||
|
|
||
|
%description
|
||
|
|
||
|
Expedite Evas benchmark/test suite
|
||
|
|
||
|
%prep
|
||
|
rm -rf $RPM_BUILD_ROOT
|
||
|
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
./configure --prefix=%prefix
|
||
|
|
||
|
if [ "$SMP" != "" ]; then
|
||
|
(make "MAKE=make -k -j $SMP"; exit 0)
|
||
|
make
|
||
|
else
|
||
|
make
|
||
|
fi
|
||
|
###########################################################################
|
||
|
|
||
|
%install
|
||
|
make DESTDIR=$RPM_BUILD_ROOT install
|
||
|
|
||
|
%clean
|
||
|
rm -rf $RPM_BUILD_ROOT
|
||
|
|
||
|
%post
|
||
|
|
||
|
%postun
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
%attr(755,root,root) %{prefix}/bin/*
|
||
|
%attr(755,root,root) %{prefix}/share/expedite
|
||
|
%doc AUTHORS
|
||
|
%doc COPYING
|
||
|
%doc COPYING-PLAIN
|
||
|
%doc README
|
||
|
|
||
|
%changelog
|
||
|
* Sat Jun 23 2001 The Rasterman <raster@rasterman.com>
|
||
|
- Created spec file
|