Commit deafa51e4604678bbbb8858277d043191920174b

Authored by Antonio Terceiro
1 parent 1f6b2557
Exists in master and in 1 other branch gitlab-8.x

Add RPM spec file

Showing 1 changed file with 29 additions and 0 deletions   Show diff stats
gitlab-deps.spec 0 → 100644
... ... @@ -0,0 +1,29 @@
  1 +Name: gitlab-deps
  2 +Version: 7.5
  3 +Release: 1%{?dist}
  4 +Summary: Ruby dependencies for Gitlab
  5 +Group: Development/Tools
  6 +License: Various
  7 +URL: https://beta.softwarepublico.gov.br/gitlab/softwarepublico/gitlab-deps
  8 +Source0: %{name}-%{version}.tar.gz
  9 +
  10 +BuildRequires: ruby, ruby-devel, rubygem-bundler, libicu-devel, cmake, mysql-devel, postgresql-devel
  11 +Requires: rubygem-bunder
  12 +
  13 +%description
  14 +Dependencies for GitLab
  15 +
  16 +%prep
  17 +%autosetup
  18 +
  19 +%build
  20 +make %{?_smp_mflags}
  21 +
  22 +%install
  23 +%make_install
  24 +
  25 +%files
  26 +/usr/lib/gitlab
  27 +%doc
  28 +
  29 +%changelog
... ...