File: pslib.spec

package info (click to toggle)
pslib 0.4.3-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,660 kB
  • ctags: 1,154
  • sloc: sh: 10,013; ansic: 9,387; makefile: 240
file content (76 lines) | stat: -rw-r--r-- 1,571 bytes parent folder | download
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Note that this is NOT a relocatable package
%define ver      0.4.3
%define prefix   /usr

Summary: Library for creating PostScript
Name: pslib
Version: %ver
Release: 1
License: LGPL
Group: Development/Libraries
Source: http://prdownloads.sourceforge.net/pslib/pslib-%{ver}.tar.gz
BuildRoot: /var/tmp/pslib-%{PACKAGE_VERSION}-root

URL: http://pslib.sourceforge.net/
Docdir: %{prefix}/doc

%description
This library allows to create PostScript files.

%package devel
Summary: Libraries, includes, etc. to develop PostScript applications
Group: Development/Libraries
Requires: pslib = %{version}

%description devel
Libraries, include files, etc you can use to develop PostScript applications.

%changelog

%prep
%setup

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

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

%install
rm -rf $RPM_BUILD_ROOT

make DESTDIR=$RPM_BUILD_ROOT install

%clean
rm -rf $RPM_BUILD_ROOT

%post -p /sbin/ldconfig

%postun -p /sbin/ldconfig

%files
%defattr(-, root, root)

%doc AUTHORS ChangeLog NEWS README COPYING
%{prefix}/lib/lib*.so.*
%attr(-,root,root) %{prefix}/share/locale/*/LC_MESSAGES/*

%files devel
%defattr(-, root, root)

%{prefix}/lib/lib*.so
%{prefix}/lib/*a
%{prefix}/lib/*la
%{prefix}/include/*
%{prefix}/lib/pkgconfig/*
%{prefix}/share/pslib/*
%doc %{prefix}/share/man/man3/*.3*