Commit 6f89fdfa0c0afb9c697734d1af34bc379832df67
1 parent
df75816c
Exists in
master
and in
3 other branches
Add RPM spec file
Showing
1 changed file
with
34 additions
and
0 deletions
Show diff stats
| @@ -0,0 +1,34 @@ | @@ -0,0 +1,34 @@ | ||
| 1 | +%define name colab-deps-src | ||
| 2 | +%define version 1 | ||
| 3 | +%define release 1 | ||
| 4 | + | ||
| 5 | +Summary: Collaboration platform for communities (source for Pyton dependencies) | ||
| 6 | +Name: %{name} | ||
| 7 | +Version: %{version} | ||
| 8 | +Release: %{release} | ||
| 9 | +Source0: %{name}-%{version}.tar.gz | ||
| 10 | +License: Various | ||
| 11 | +Group: Development/Tools | ||
| 12 | +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot | ||
| 13 | +Prefix: %{_prefix} | ||
| 14 | +Vendor: Sergio Oliveira <sergio@tracy.com.br> | ||
| 15 | +Url: https://github.com/colab-community/colab | ||
| 16 | + | ||
| 17 | +%description | ||
| 18 | +Integrated software development platform (source for Python dependencies). | ||
| 19 | + | ||
| 20 | +%prep | ||
| 21 | +%setup -n %{name}-%{version} -n %{name}-%{version} | ||
| 22 | + | ||
| 23 | +%build | ||
| 24 | +# nothing | ||
| 25 | + | ||
| 26 | +%install | ||
| 27 | +%make_install | ||
| 28 | + | ||
| 29 | +%clean | ||
| 30 | +rm -rf $RPM_BUILD_ROOT | ||
| 31 | + | ||
| 32 | +%files | ||
| 33 | +/usr/src/colab/dependencies | ||
| 34 | +%defattr(-,root,root) |