source: trunk/third/gal/gal.spec @ 16859

Revision 16859, 1.4 KB checked in by ghudson, 23 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r16858, which included commits to RCS files with non-trunk default branches.
Line 
1%define prefix /usr
2
3Summary: The G App library.
4Name: gal
5Version: 0.18.1
6Release: 1
7Copyright: LGPL
8Group: System Environment/Libraries
9Source: ftp://ftp.gnome.org/pub/GNOME/unstable/sources/gal/gal-%{version}.tar.gz
10BuildRoot: /var/tmp/gal-%{PACKAGE_VERSION}-root
11
12%description
13Reuseable GNOME library functions.
14
15%package devel
16Summary: Libraries and include files for the G App library.
17Group: Development/Libraries
18
19%description devel
20The gal-devel package includes the static libraries and header files for the
21gal package.
22
23Install gal-devel if you want to develop programs which will use gal.
24
25%changelog
26* Thu Mar 15 2001 Matthew Wilson <msw@redhat.com>
27- the -devel package must own the /usr/include/gal directory and all
28  its contents
29
30* Fri Oct 10 2000 John Gotts <jgotts@linuxsavvy.com>
31- Created spec file.
32
33%prep
34%setup
35
36%build
37./configure --prefix=%{prefix} --sysconfdir=/etc --enable-static --enable-shared
38make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
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 -p /sbin/ldconfig
50
51%postun -p /sbin/ldconfig
52
53%files
54%doc README AUTHORS COPYING ChangeLog NEWS
55%{prefix}/share/etable/%{version}/glade/*.glade
56%{prefix}/lib/libgal.so.*
57%{prefix}/lib/galConf.sh
58
59%files devel
60%defattr(-, root, root)
61%{prefix}/lib/libgal.so
62%{prefix}/lib/libgal.a
63%{prefix}/lib/libgal.la
64%{prefix}/include/gal
Note: See TracBrowser for help on using the repository browser.