forked from ui-alchemy/ui_alchemy-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
converge-ui-devel.spec
64 lines (50 loc) · 1.76 KB
/
converge-ui-devel.spec
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# vim: sw=4:ts=4:et
#
# Copyright 2011 Red Hat, Inc.
#
# This software is licensed to you under the GNU General Public
# License as published by the Free Software Foundation; either version
# 2 of the License (GPLv2) or (at your option) any later version.
# There is NO WARRANTY for this software, express or implied,
# including the implied warranties of MERCHANTABILITY,
# NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
# have received a copy of GPLv2 along with this software; if not, see
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
%global homedir %{_datarootdir}/%{name}
Name: converge-ui-devel
Summary: A collection of assets
Group: Applications/System
License: GPLv2
URL: http://www.katello.org
Version: 0.3
Release: 1%{?dist}
Source0: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
%description
A common set of web assets.
%prep
%setup -q
%build
%install
rm -rf $RPM_BUILD_ROOT
install -m0755 -d %{buildroot}%{homedir}
install -m0755 -d %{buildroot}%{homedir}/javascripts/
install -m0755 -d %{buildroot}%{homedir}/rails/
install -m0755 -d %{buildroot}%{homedir}/stylesheets/
cp -R javascripts/* %{buildroot}%{homedir}/javascripts/
cp -R rails/* %{buildroot}%{homedir}/rails
cp -R stylesheets/* %{buildroot}%{homedir}/stylesheets/
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(755, root, root)
%{homedir}
%doc README LICENSE
%changelog
* Wed May 16 2012 Eric D Helms <[email protected]> 0.3-1
- First tag of converge-ui-devel.
* Thu Mar 29 2012 Eric D Helms <[email protected]> 0.2-1
- new package built with tito
* Wed Mar 28 2012 Eric D Helms <[email protected]> 0.1-1
- Changes to spec file. ([email protected])