forked from pool/lua-lua-dbus
		
	- Fix missing dependency on lua-macros (boo#1205612) OBS-URL: https://build.opensuse.org/request/show/1060904 OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-lua-dbus?expand=0&rev=10
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
#
 | 
						|
# spec file for package lua-lua-dbus
 | 
						|
#
 | 
						|
# Copyright (c) 2020 SUSE LLC
 | 
						|
#
 | 
						|
# All modifications and additions to the file contributed by third parties
 | 
						|
# remain the property of their copyright owners, unless otherwise agreed
 | 
						|
# upon. The license for this file, and modifications and additions to the
 | 
						|
# file, is the same license as for the pristine package itself (unless the
 | 
						|
# license for the pristine package is not an Open Source License, in which
 | 
						|
# case the license is the MIT License). An "Open Source License" is a
 | 
						|
# license that conforms to the Open Source Definition (Version 1.9)
 | 
						|
# published by the Open Source Initiative.
 | 
						|
 | 
						|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
 | 
						|
#
 | 
						|
 | 
						|
 | 
						|
%define flavor @BUILD_FLAVOR@
 | 
						|
%define mod_name lua-dbus
 | 
						|
Version:        0.0+git20170818.8fe38d0
 | 
						|
Release:        0
 | 
						|
Summary:        Convenient dbus api for lua
 | 
						|
License:        MIT
 | 
						|
Group:          Development/Libraries/Other
 | 
						|
URL:            https://github.com/antlarr/lua-dbus/
 | 
						|
Source:         lua-dbus-%{version}.tar.xz
 | 
						|
BuildRequires:  lua-macros
 | 
						|
BuildRequires:  %{flavor}-devel
 | 
						|
BuildRequires:  %{flavor}-ldbus
 | 
						|
BuildRequires:  pkgconfig
 | 
						|
BuildRequires:  pkgconfig(dbus-1)
 | 
						|
Requires:       %{flavor}
 | 
						|
Requires:       %{flavor}-ldbus
 | 
						|
%lua_provides
 | 
						|
%if "%{flavor}" == ""
 | 
						|
Name:           lua-%{mod_name}
 | 
						|
ExclusiveArch:  do_not_build
 | 
						|
%else
 | 
						|
Name:           %{flavor}-%{mod_name}
 | 
						|
%endif
 | 
						|
 | 
						|
%description
 | 
						|
lua-dbus is a convenient lua api for dbus
 | 
						|
 | 
						|
%prep
 | 
						|
%setup -q -n lua-dbus-%{version}
 | 
						|
 | 
						|
%build
 | 
						|
:
 | 
						|
 | 
						|
%install
 | 
						|
mkdir -p %{buildroot}%{lua_noarchdir}/lua-dbus
 | 
						|
cp -Ra awesome  init.lua  interface.lua %{buildroot}%{lua_noarchdir}/lua-dbus/
 | 
						|
 | 
						|
%files
 | 
						|
%license LICENSE
 | 
						|
%{lua_noarchdir}/lua-dbus
 | 
						|
 | 
						|
%changelog
 |