9 lines
124 B
Bash
Executable File
9 lines
124 B
Bash
Executable File
#!/bin/bash
|
|
|
|
: ${ARCH:=`uname -m`}
|
|
|
|
yum install \
|
|
libX11-devel.$ARCH \
|
|
libxkbfile-devel.$ARCH \
|
|
libsecret-devel
|