]> git.pld-linux.org Git - packages/pango.git/blame - pango.spec
- raw version.
[packages/pango.git] / pango.spec
CommitLineData
a6b89e6e 1%define prefix /usr
2
3Summary: System for layout and rendering of internationalized text
4Name: pango
5Version: 0.9
6Release: 1
7Copyright: LGPL
8Group: System Environment/Libraries
9Source: http://www.pango.org/download/pango-%{version}.tar.gz
10BuildRoot: /var/tmp/pango-%{PACKAGE_VERSION}-root
11
12%description
13System for layout and rendering of internationalized text.
14
15%package devel
16Summary: System for layout and rendering of internationalized text
17Group: Development/Libraries
18Requires: pango = %{PACKAGE_VERSION}
19Requires: libunicode-devel
20Requires: fribidi-devel
21Requires: XFree86-devel
22
23%description devel
24The pango-devel package includes the static libraries and header files
25for the pango package.
26
27Install pango-devel if you want to develop programs which will use
28pango.
29
30%changelog
31* Fri Feb 11 2000 Owen Taylor <otaylor@redhat.com>
32- Created spec file
33
34%prep
35%setup
36
37%build
38CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --sysconfdir=/etc --localstatedir=/var
39
40%install
41rm -rf $RPM_BUILD_ROOT
42mkdir -p $RPM_BUILD_ROOT%{prefix}
43
44make install DESTDIR=$RPM_BUILD_ROOT
45
46%clean
47rm -rf $RPM_BUILD_ROOT
48
49%post
50/sbin/ldconfig
51if ! test -d /var/lib/pango ; then
52 mkdir -p /var/lib/pango/
53fi
54/usr/bin/pango-querymodules /usr/lib/pango/modules/*.so > /var/lib/pango/pango.modules
55
56%postun -p /sbin/ldconfig
57
58%files
59%doc README AUTHORS COPYING ChangeLog TODO
60%doc examples/HELLO.utf8
61%{prefix}/lib/libpango*-*.so
62%{prefix}/bin/pango-querymodules
63%{prefix}/bin/pango-viewer
64%{prefix}/lib/pango/modules/*
65%config /etc/pango/pangox_aliases
66
67%files devel
68%defattr(-, root, root)
69%{prefix}/lib/libpango*.so
70%{prefix}/bin/pango-config
71%{prefix}/lib/libpango*.a
72%{prefix}/include/*
This page took 0.135587 seconds and 4 git commands to generate.