🔒 Repository is read-only – file editing is disabled.

recipes/utils/alsa-utils/PAGBUILD.yaml main

42 linii Raw ← Powrót
123456789101112131415161718192021222324252627282930313233343536373839404142
pkgname: 'alsa-utils'
pkgver: '1.2.16'
pkgrel: '1'
pkgdesc: 'Utilities for configuring and using ALSA'
url: 'https://www.alsa-project.org/wiki/Main_Page'
arch: x86_64
depends:
- gawk
- dialog

makedepends:
- 'alsa-lib'
- xmlto
- libsamplerate

source:
- 'https://www.alsa-project.org/files/pub/utils/${pkgname}-${pkgver}.tar.bz2'

sha256sums:
- SKIP

hooks:
  'post-install': |
    name=alsa-utils
    version=1.2.16
    release=1
    mkdir -p var/lib/alsa
    alsactl -L store

build: |
  cd ${pkgname}-${pkgver}
  ./configure --prefix=/usr \
    --sbindir=/usr/bin     \
    --disable-alsaconf     \
    --disable-bat           \
    --disable-xmlto        \
    --with-curses=ncursesw
  make
  make DESTDIR=${PKGDIR} install

package: |
  true