summaryrefslogtreecommitdiffstats
path: root/redhat/build/install_requires.sh
blob: 9c901ac5055033cd1f3e0e4c3d550fd4b222d83c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

PKGFILE="packages$(rpm -E %dist)"

# Under Mageia/Mandriva, do not forget to enable "Tainted" and "Nonfree" repositories !
if [ -x /usr/sbin/urpmi ]; then
  if [ "$(uname -i)" = "x86_64" ]; then
    PKGS="$(<${PKGFILE})"
  else
    PKGS="$(sed -e "s|lib64|lib|" ${PKGFILE} | sort -u)"
  fi

  sudo urpmi ${PKGS} 2>&1
fi