summaryrefslogtreecommitdiffstats
path: root/libcgroup.spec.in
diff options
context:
space:
mode:
authorBalbir Singh <balbir@linux.vnet.ibm.com>2008-05-24 11:08:57 +0000
committerBalbir Singh <balbir@linux.vnet.ibm.com>2008-05-24 11:08:57 +0000
commit6b0384f40a1eb8ff70b27b6dfed3553883c9141f (patch)
tree95d650f507446f69071f3d0cd728392468027d5c /libcgroup.spec.in
parentc74b7e334e27928cbfeee489adcc7c25d2efb369 (diff)
downloadlibcg-6b0384f40a1eb8ff70b27b6dfed3553883c9141f.tar.gz
libcg-6b0384f40a1eb8ff70b27b6dfed3553883c9141f.tar.xz
libcg-6b0384f40a1eb8ff70b27b6dfed3553883c9141f.zip
Add v0.1b tag
git-svn-id: https://libcg.svn.sourceforge.net/svnroot/libcg/tags/v0.1b@49 4f4bb910-9a46-0410-90c8-c897d4f1cd53
Diffstat (limited to 'libcgroup.spec.in')
-rw-r--r--libcgroup.spec.in69
1 files changed, 69 insertions, 0 deletions
diff --git a/libcgroup.spec.in b/libcgroup.spec.in
new file mode 100644
index 0000000..20915bb
--- /dev/null
+++ b/libcgroup.spec.in
@@ -0,0 +1,69 @@
+Name: cgroup
+Summary: A collection of tools and libraries to control and monitor control groups the associated controllers
+Group: Development/Libraries
+Version: @PACKAGE_VERSION@
+Release: 1%{?dist}
+License: LGPL
+URL: http://libcg.sourceforge.net/%{name}-%{version}.tar.bz2
+Source0: libcgroup.tar.bz2
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildRequires: byacc
+BuildRequires: flex
+BuildRequires: coreutils
+
+%description
+
+Control groups infrastructure. The tools and library help manipulate, control,
+administrate and monitor control groups and the associated controllers.
+
+%package lib
+Summary: Development libraries to handle control group applications
+Group: Development/Libraries
+
+%description lib
+The libcgroup-devel package contains the libraries to run control group
+applications.
+
+%package lib-devel
+Summary: Development libraries to develop applications that utilize control groups
+Group: Development/Libraries
+
+%description lib-devel
+It provides API to create/delete and modify cgroup nodes. It will also in the
+future allow creation of persistent configuration for control groups and provide
+scripts to manage that configuration.
+
+%prep
+%setup -q
+
+
+%build
+%configure
+make %{?_smp_mflags}
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%makeinstall
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files lib
+%defattr(-,root,root,-)
+%{_libdir}/libcgroup-%{version}.so
+%{_libdir}/libcgroup.so.*
+%doc COPYING INSTALL
+
+%files lib-devel
+%defattr(-,root,root,-)
+%{_includedir}/libcgroup.h
+%{_libdir}/libcgroup.so
+%doc COPYING INSTALL
+
+
+%changelog
+*Tue May 20 2008 Dhaval Giani <dhaval@linux.vnet.ibm.com> 0.1-1
+-The first version of libcg
+* Tue May 20 2008 Balbir Singh <balbir@linux.vnet.ibm.com> 0.1-1
+- Get the spec file to work