Created
April 17, 2019 16:47
-
-
Save mritzco/c7c60ab5f236ec140e82365c1e01b257 to your computer and use it in GitHub Desktop.
Installing miraclecast and dependencies on Linux Mint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# not really an sh file but the sequence I used to install, might work as .sh but haven't tried | |
# If running as .sh with sudo it might not need the sudo's | |
# 1. Clone the repo and create the directories | |
git clone https://github.com/albfan/miraclecast.git | |
cd miraclecast/ | |
mkdir build | |
cd build/ | |
# 2. There's lots of dependencies not listed | |
sudo apt-get install autoconf automake libtool libudev-dev libsystemd-dev libglib2.0-dev libreadline-dev | |
# 3. Continue the building process | |
../autogen.sh g --prefix=/usr | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment