1#!/bin/bash 2 3# This library is free software; you can redistribute it and/or 4# modify it under the terms of the GNU Lesser General Public 5# License as published by the Free Software Foundation version 2.1 6# of the License. 7# 8# Copyright(c) 2022 Huawei Device Co., Ltd. 9 10sudo apt-get install autoconf 11sudo apt-get install libtool 12sudo apt-get install pkg-config 13./autogen.sh 14./configure 15make 16 17exit 0 18