talimat 690 B

12345678910111213141516171819202122232425262728
  1. # Description: Alsa ses desteğini ayarlamak ve kullanmak için çeşitli araçlar.
  2. # URL: http://www.alsa-project.org
  3. # Packager: milisarge
  4. # Depends on: alsa-lib xmlto libsamplerate gawk
  5. name=alsa-utils
  6. version=1.1.0
  7. release=1
  8. source=(ftp://ftp.alsa-project.org/pub/utils/$name-$version.tar.bz2)
  9. build() {
  10. source /etc/blfs-bootscripts
  11. wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2
  12. tar xvf $scripts-$scriptsversion.tar.bz2
  13. cd $name-$version
  14. ./configure --prefix=/usr \
  15. --disable-alsaconf \
  16. --disable-bat \
  17. --disable-xmlto \
  18. --with-curses=ncursesw
  19. make
  20. make DESTDIR=$PKG install
  21. cd ../$scripts-$scriptsversion
  22. make DESTDIR=$PKG install-alsa
  23. }