]> git.pld-linux.org Git - packages/bitbake.git/commitdiff
- initial PLD release
authorluzik <luzik@pld-linux.org>
Fri, 8 Apr 2005 13:33:39 +0000 (13:33 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    bitbake.spec -> 1.1

bitbake.spec [new file with mode: 0644]

diff --git a/bitbake.spec b/bitbake.spec
new file mode 100644 (file)
index 0000000..9917524
--- /dev/null
@@ -0,0 +1,51 @@
+Summary:       BitBake build tool
+Name:          bitbake
+Version:       1.2
+Release:       1
+License:       GPL
+Group:         Development
+Source0:       http://download.berlios.de/bitbake/%{name}-%{version}.tar.gz
+# Source0-md5: 62c799d91d291a17078d6c23a94e793e
+URL:           http://developer.berlios.de/projects/bitbake/
+BuildRequires: python-devel >= 2.0
+%pyrequires_eq python
+Requires:      python-modules
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+BitBake is a simple tool for the execution of tasks. It is derived
+from Portage, which is the package management system used by the
+Gentoo Linux distribution. It is most commonly used to build packages,
+as it can easily use its rudamentary inheritence to abstract common
+operations, such as fetching sources, unpacking them, patching them,
+compiling them, and so on. It is the basis of the OpenEmbedded
+project, which is being used for OpenZaurus, Familiar, and a number of
+other Linux distributions.
+
+%prep
+%setup -q
+
+%build
+python setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d ${RPM_BUILD_ROOT}%{_sysconfdir}
+python setup.py install \
+       --prefix=%{_prefix} \
+       --root=${RPM_BUILD_ROOT}
+
+mv ${RPM_BUILD_ROOT}%{_prefix}/%{name} ${RPM_BUILD_ROOT}%{_sysconfdir}/
+
+%clean
+rm -rf ${RPM_BUILD_ROOT}
+
+%files
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/*
+%{_sysconfdir}/%{name}
+%dir %{py_sitescriptdir}/bb
+%{py_sitescriptdir}/bb/*py[co]
+%dir %{py_sitescriptdir}/bb/parse
+%{py_sitescriptdir}/bb/parse/*py[co]
This page took 0.06096 seconds and 4 git commands to generate.