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

recipes/gui/pulseaudio-qt/PAGBUILD.yaml main

40 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031323334353637383940
pkgname: 'pulseaudio-qt'
pkgver: '1.8.1'
pkgrel: '1'
pkgdesc: 'Qt bindings for pulseaudio'
url: 'https://www.kde.org/'
arch: x86_64
license:
- LGPL

depends: []
makedepends:
- 'qt6-base'
- pulseaudio
- 'extra-cmake-modules'
- doxygen
- 'qt6-tools'

source:
- 'https://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.xz'

sha256sums:
- SKIP

build: |
  cd ${pkgname}-${pkgver}
  mkdir build
  cd    build

  cmake -DCMAKE_INSTALL_PREFIX=/usr \
        -DBUILD_TESTING=OFF         \
        -DCMAKE_INSTALL_LIBDIR=lib  \
        -DQT_MAJOR_VERSION=6        \
        -DBUILD_QCH=ON              \
        -DCMAKE_BUILD_TYPE=Release  \
        ..
  make
  make DESTDIR=${PKGDIR} install

package: |
  true