Commit ad53b5fa054da8a570bc9ddb8c87c0312b1f625e

Authored by Perry Werneck
1 parent 1604a097

Adding script for automated installation of required development

libraries.
Showing 1 changed file with 12 additions and 0 deletions   Show diff stats
rpm/install_pre_reqs.sh 0 → 100755
@@ -0,0 +1,12 @@ @@ -0,0 +1,12 @@
  1 +#!/bin/bash
  2 +
  3 +myDIR=$(dirname $(readlink -f ${0}))
  4 +
  5 +grep -i "^BuildRequires:" $myDIR/*.spec \
  6 + | cut -d: -f2 \
  7 + | cut -d'>' -f1 \
  8 + | cut -d= -f1 \
  9 + | sudo xargs zypper in
  10 +
  11 +
  12 +