source: projects/specs/branches/6/c/cdemu-client/cdemu-client-vl.spec @ 5649

Revision 5649, 2.0 KB checked in by kudoh, 12 years ago (diff)
Line 
1%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
2%global python_module_name cdemu
3
4Summary: A simple command-line client to control CDEmu daemon
5Summary(ja): CDEmuデーモンを制御するシンプルなコマンドラインクライアント
6Name: cdemu-client
7Version: 1.3.0
8Release: 2%{?_dist_release}
9License: GPLv2+
10Group: Applications/Accessories
11URL: http://cdemu.sourceforge.net
12Source: http://downloads.sourceforge.net/cdemu/%{name}-%{version}.tar.gz
13BuildRoot: %{_tmppath}/%{name}-%{version}-root
14BuildArch: noarch
15
16BuildRequires: dbus-python-devel
17BuildRequires: gettext intltool
18BuildRequires: perl-XML-Parser
19BuildRequires: python-devel
20
21%description
22This is cdemu-client, a simple command-line client for controlling CDEmu daemon.
23It is part of the userspace-cdemu suite, a free, GPL CD/DVD-ROM device emulator
24for linux.
25
26It provides a way to perform the key tasks related to controlling the CDEmu
27daemon, such as loading and unloading devices, displaying devices' status and
28retrieving/setting devices' debug masks.
29
30%prep
31%setup -q
32
33%build
34%{configure}
35%{__make} %{?_smp_mflags}
36
37%install
38%{__rm} -rf $RPM_BUILD_ROOT
39%{__make} install DESTDIR=$RPM_BUILD_ROOT
40%find_lang cdemu-client
41
42%clean
43%{__rm} -rf $RPM_BUILD_ROOT
44
45%files -f cdemu-client.lang
46%defattr(-,root,root,-)
47%doc AUTHORS ChangeLog COPYING NEWS README
48%dir %{python_sitelib}/%{python_module_name}/
49%{python_sitelib}/%{python_module_name}/*.py*
50%{_bindir}/*
51%{_mandir}/man1/*
52
53
54%changelog
55* Tue Feb 14 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.3.0-2
56- rebuilt with rpm-4.8.1
57
58* Thu Sep 2 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.3.0-1
59- new upstream release
60
61* Sat Sep 26 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.2.0-1
62- initial build for VineSeed
63
64* Sat Jun 28 2008 Rok Mandeljc <rok.mandeljc@email.si> - 1.1.0-1
65- Updated to 1.1.0
66
67* Thu Dec 20 2007 Rok Mandeljc <rok.mandeljc@email.si> - 1.0.0-1
68- Initial RPM release.
Note: See TracBrowser for help on using the repository browser.