File: diction.spec.in

package info (click to toggle)
diction 0.9-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 364 kB
  • ctags: 220
  • sloc: ansic: 1,893; sh: 1,762; makefile: 77
file content (57 lines) | stat: -rw-r--r-- 1,064 bytes parent folder | download | duplicates (5)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
%define prefix     /usr

%define  RELEASE 1
%define  rel     %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}

Summary: analyze text for style
Name: 		diction
Version:	@VERSION@
Release: 	%rel
Copyright: 	GPL
Group: 		Text/Utilities
Source:		http://www.moria.de/~michael/diction/diction-%{version}.tar.gz
BuildRoot: 	/var/tmp/%{name}-%{version}-root
URL: 		http://www.moria.de/~michael/diction/
DocDir: 	%{prefix}/doc

%description
diction [desc]

%changelog
* Thu May 12 2000 HWN <hanwen@cs.uu.nl>
- Initial spec file copied GGV

%prep
%setup

%build

# Needed for snapshot releases.
if [ ! -f configure ]; then
  CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh $ARCH_FLAGS --prefix=%{prefix} 
else
  CFLAGS="$RPM_OPT_FLAGS" ./configure $ARCH_FLAGS --prefix=%{prefix}
fi

if [ "$SMP" != "" ]; then
  (make "MAKE=make -k -j $SMP"; exit 0)
  make
else
  make
fi

%install
rm -rf $RPM_BUILD_ROOT

make prefix=$RPM_BUILD_ROOT%{prefix}  install

%clean
rm -rf $RPM_BUILD_ROOT

%files
%defattr(-, root, root)

%doc COPYING README 
%{prefix}/bin/*
%{prefix}/share/*
%{prefix}/man/*