UmVirt LFS Package info

DB commit: 06a3bafc31a9f2da2aecdf7c1c6e8b91885cb553
APP commit: 634ff2193dea70dde75eb1916d758638b7417453

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.1/packages/a/alsa-tools-1.2.11.tar.bz2
Package md5-checksum URL: https://umvirt.com/linux/downloads/0.2.1/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