blob: fbc28bdfc198bf8b156641e46c28a727a9545ef0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
Name: panda-release-repos
Summary: Tizen 2.0 IVI Panda Release Repos
Version: 1
Release: 1
Group: System/Libraries
License: LGPLv2.1
URL: http://www.tizen.org
Source0: %{name}-%{version}.tar.bz2
%description
This package installs the .repo files for Tizen IVI Preview automotive images
%prep
%setup -q -n %{name}-%{version}
%build
%install
rm -rf %{buildroot}
install -d %{buildroot}/etc/zypp/repos.d
install -m 0755 tizen-base.repo %{buildroot}/etc/zypp/repos.d
install -m 0755 tizen-ivi.repo %{buildroot}/etc/zypp/repos.d
%post
%files
%defattr(-,root,root,-)
/etc/zypp/repos.d/*
|