]> git.pld-linux.org Git - packages/conary.git/blob - conary.spec
- protect against sending broken package to builders
[packages/conary.git] / conary.spec
1 #
2 # TODO: FHS: don't package binaries in /usr/share!!!
3 #
4 Summary:        Distributed software management system for Linux distributions
5 Summary(pl):    Rozproszony system zarz±dzania oprogramowaniem dla dystrybucji Linuksa
6 Name:           conary
7 Version:        0.9.5
8 Release:        0.1
9 License:        CPL 1.0
10 Group:          Applications/System
11 Source0:        ftp://download.specifixinc.com/pub/conary/%{name}-%{version}.tar.bz2
12 # Source0-md5:  6edbf109da8c6db8f2f8e8a7aac86c8e
13 URL:            http://wiki.specifixinc.com/
14 BuildRequires:  FHS-fixes(see TODO)
15 BuildRequires:  python-devel
16 BuildRequires:  rpm-pythonprov
17 BuildRequires:  sqlite-devel >= 3.0.0
18 Requires:       python-devel-tools
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 Conary is a distributed software management system for Linux
23 distributions. It replaces traditional package management solutions
24 (such as RPM and dpkg) with one designed to enable loose collaboration
25 across the Internet. It enables sets of distributed and loosely
26 connected repositories to define the components which are installed on
27 a Linux system. Rather then having a full distribution come from a
28 single vendor, it allows administrators and developers to branch a
29 distribution, keeping the pieces which fit their environment while
30 grabbing components from other repositories across the Internet.
31
32 %description -l pl
33 Conary to rozproszony system zarz±dzania oprogramowaniem dla
34 dystrybucji Linuksa. Zastêpuje tradycyjne rozwi±zania zarz±dzania
35 pakietami (takie jak RPM czy dpkg) jednym, zaprojektowanym aby
36 umo¿liwiæ lu¼n± wspó³pracê poprzez Internet. Umo¿liwia zbiorom
37 rozproszonych i lu¼no powi±zanych repozytoriów na definiowanie
38 komponentów, które s± instalowane w systemie linuksowym. Zamiast
39 posiadania pe³nej dystrybucji pochodz±cej od jednego producenta,
40 pozwala administratorom i deweloperom na odga³êzienie dystrybucji,
41 trzymanie kawa³ków pasuj±cych do ich ¶rodowiska i wyci±ganie
42 komponentów ¿ innych repozytoriów z Internetu.
43
44 %prep
45 %setup -q
46
47 %build
48 %{__make} \
49         CC="%{__cc}" \
50         PYTHON=%{_bindir}/python
51
52 %install
53 rm -rf $RPM_BUILD_ROOT
54
55 %{__make} install \
56         DESTDIR=$RPM_BUILD_ROOT \
57         PYTHON=%{_bindir}/python
58
59 %clean
60 rm -rf $RPM_BUILD_ROOT
61
62 %files
63 %defattr(644,root,root,755)
64 %doc NEWS
65 %attr(755,root,root) %{_bindir}/*
66 %dir %{_datadir}/%{name}
67 %dir %{_datadir}/%{name}/build
68 %dir %{_datadir}/%{name}/deps
69 %dir %{_datadir}/%{name}/lib
70 %dir %{_datadir}/%{name}/local
71 %dir %{_datadir}/%{name}/repository
72 %dir %{_datadir}/%{name}/sqlite3
73 %{_datadir}/%{name}/*.py[oc]
74 %{_datadir}/%{name}/*/*.py[oc]
75 %attr(755,root,root) %{_datadir}/%{name}/*.so
76 %attr(755,root,root) %{_datadir}/%{name}/*/*.so
77 %attr(755,root,root) %{_datadir}/%{name}/conary
78 %attr(755,root,root) %{_datadir}/%{name}/cvc
79 %{_mandir}/man*/*
This page took 0.122308 seconds and 3 git commands to generate.