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

recipes/utils/iwd/PAGBUILD.yaml main

44 linii Raw ← Powrót
1234567891011121314151617181920212223242526272829303132333435363738394041424344
pkgname: iwd
pkgver: '3.12'
pkgrel: '1'
pkgdesc: 'Internet Wireless Daemon'
url: 'https://git.kernel.org/cgit/network/wireless/iwd.git/'
arch: x86_64
license:
- LGPL

depends: []
makedepends:
- dbus
- 'python-docutils'
- readline
- pkgconf

source:
- 'https://mirrors.edge.kernel.org/pub/linux/network/wireless/${pkgname}-${pkgver}.tar.xz'

sha256sums:
- SKIP

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

        ./configure --prefix=/usr \
                    --sysconfdir=/etc \
                    --localstatedir=/var \
                    --runstatedir=/run \
                    --libexecdir=/usr/lib/iwd \
                    --enable-wired \
                    --enable-ofono \
                    --enable-sim-hardcoded \
                    --enable-hwsim \
                    --disable-tools

  make
  make install DESTDIR=${PKGDIR}

  install -dm700 ${PKGDIR}/var/lib/ead/
  install -dm700 ${PKGDIR}/var/lib/iwd/

package: |
  true