root/lightcube_os/trunk/packages/pkg-config/pkg-config.spec @ 7

Revision 7, 1.0 KB (checked in by jhuntwork, 8 months ago)

Version updates and initial powerpc support

Line 
1Summary: pkg-config
2Name: pkg-config
3Version: 0.23
4Release: 1
5Group: Development/Tools
6License: GPLv2
7Distribution: LightCube OS
8Vendor: LightCube Solutions
9URL: http://pkg-config.freedesktop.org
10Source: http://dev.lightcube.us/~jhuntwork/sources/%{name}/%{name}-%{version}.tar.gz
11
12Requires: base-layout, glibc
13Provides: pkgconfig
14
15%description
16pkg-config is a helper tool used when compiling applications and libraries. It can
17be used to determine library versions and compiler options needed for linking to
18installed libraries.
19
20%prep
21%setup -q
22
23%build
24./configure --prefix=/usr --with-pc-path=/usr/%{_lib}/pkgconfig
25make
26make check
27
28%install
29make DESTDIR=%{buildroot} install
30install -dv %{buildroot}/usr/share/pkgconfig
31install -dv %{buildroot}/usr/%{_lib}/pkgconfig
32
33%clean
34rm -rf %{buildroot}
35
36%files
37%defattr(-,root,root)
38/usr/bin/pkg-config
39/usr/share/aclocal/pkg.m4
40/usr/share/pkgconfig
41/usr/%{_lib}/pkgconfig
42/usr/share/man/man1/pkg-config.1
43
44%changelog
45* Sat Jul 25 2009 Jeremy Huntwork <jhuntwork@lightcubesolutions.com> - 0.23-1
46- Initial version
Note: See TracBrowser for help on using the browser.