UmVirt LFS Package info
DB commit: 48bb9ee31306c82c48dfaaad707eb4f6a926eb8a
APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f
alsa-tools
The ALSA Tools package contains advanced tools for certain sound cards.
Package info
Codename: alsa-tools
Source file: alsa-tools-1.2.11.tar.bz2
Source directory: alsa-tools-1.2.11
Package URL: https://umvirt.com/linux/downloads/0.2.2/packages/a/alsa-tools-1.2.11.tar.bz2
Package md5-checksum URL: https://umvirt.com/linux/downloads/0.2.2/packages/a/alsa-tools-1.2.11.tar.bz2.md5sum
Dependances: alsa-lib.
Dependance of: alsa-firmware, ALSA.
Patches: *** NO PATCHES FOUND ***
Addons: *** NO ADDONS FOUND ***
Nestings *** NO NESTINGS FOUND ***
Configuration script:
rm -rf qlo10k1 Makefile gitcompile
for tool in *
do
case $tool in
seq )
tool_dir=seq/sbiload
;;
* )
tool_dir=$tool
;;
esac
pushd $tool_dir
./configure --prefix=/usr
popd
done
unset tool tool_dir
Build script:
for tool in *
do
case $tool in
seq )
tool_dir=seq/sbiload
;;
* )
tool_dir=$tool
;;
esac
pushd $tool_dir
make
popd
done
unset tool tool_dir
Install script:
as_root()
{
if [ \$EUID = 0 ]; then \$*
elif [ -x /usr/bin/sudo ]; then sudo \$*
else su -c \\"\$*\\"
fi
}
export -f as_root
for tool in *
do
case \$tool in
seq )
tool_dir=seq/sbiload
;;
* )
tool_dir=\$tool
;;
esac
pushd \$tool_dir
as_root make install
as_root /sbin/ldconfig
popd
done
unset tool tool_dir