]> git.pld-linux.org Git - packages/bitbake.git/blame - bitbake.spec
- tabs in preamble
[packages/bitbake.git] / bitbake.spec
CommitLineData
1821f023 1Summary: BitBake build tool
2dc24e59 2Summary(pl.UTF-8): BitBake - narzędzie do budowania
1821f023 3Name: bitbake
c6dc7b0a 4Version: 1.4.2
1821f023 5Release: 1
6License: GPL
7Group: Development
8Source0: http://download.berlios.de/bitbake/%{name}-%{version}.tar.gz
c6dc7b0a 9# Source0-md5: e26e53dffbd85dfde9995ddf478cdc29
1821f023 10URL: http://developer.berlios.de/projects/bitbake/
11BuildRequires: python-devel >= 2.0
12%pyrequires_eq python
13Requires: python-modules
14BuildArch: noarch
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18BitBake is a simple tool for the execution of tasks. It is derived
19from Portage, which is the package management system used by the
20Gentoo Linux distribution. It is most commonly used to build packages,
55385a53 21as it can easily use its rudimentary inheritance to abstract common
1821f023 22operations, such as fetching sources, unpacking them, patching them,
23compiling them, and so on. It is the basis of the OpenEmbedded
24project, which is being used for OpenZaurus, Familiar, and a number of
25other Linux distributions.
26
1a31fe40
JR
27%description -l pl.UTF-8
28BitBake to proste narzędzie do wykonywania zadań. Wywodzi się z
29Portage, które jest systemem zarządzania pakietami używanym w
30dystrybucji Linuksa Gentoo. Najczęściej jest używane do budowania
31pakietów, jako że może łatwo używać swojej elementarnej dziedziczności
32do abstrahowania wspólnych operacji, takich jak pobieranie źródeł,
33rozpakowywanie ich, łatanie, kompilowanie i tak dalej. Jest podstawą
34projektu OpenEmbedded, używanego przez projekty OpenZaurus, Familiar i
55385a53
JB
35wiele innych dystrybucji Linuksa.
36
1821f023 37%prep
38%setup -q
39
40%build
41python setup.py build
42
43%install
44rm -rf $RPM_BUILD_ROOT
a9ff8806 45install -d $RPM_BUILD_ROOT%{_sysconfdir}
1821f023 46python setup.py install \
47 --prefix=%{_prefix} \
a9ff8806 48 --root=$RPM_BUILD_ROOT
1821f023 49
a9ff8806 50mv $RPM_BUILD_ROOT%{_prefix}/%{name} $RPM_BUILD_ROOT%{_sysconfdir}
1821f023 51
52%clean
53rm -rf ${RPM_BUILD_ROOT}
54
55%files
56%defattr(644,root,root,755)
57%attr(755,root,root) %{_bindir}/*
58%{_sysconfdir}/%{name}
59%dir %{py_sitescriptdir}/bb
60%{py_sitescriptdir}/bb/*py[co]
c6dc7b0a 61%dir %{py_sitescriptdir}/bb/fetch
62%{py_sitescriptdir}/bb/fetch/*py[co]
1821f023 63%dir %{py_sitescriptdir}/bb/parse
64%{py_sitescriptdir}/bb/parse/*py[co]
c6dc7b0a 65%dir %{py_sitescriptdir}/bb/parse/parse_py
66%{py_sitescriptdir}/bb/parse/parse_py/*py[co]
This page took 0.063027 seconds and 4 git commands to generate.