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

recipes/core/meson/PAGBUILD.yaml main

46 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031323334353637383940414243444546
pkgname: meson
pkgver: '1.12.0'
pkgrel: '1'
pkgdesc: 'Meson is an open source build system meant to be both extremely fast, as user friendly as possible'
url: 'https://mesonbuild.com/'
arch: x86_64
license:
- Apache

depends: []
makedepends:
- sqlite
- expat
- libffi
- python
- 'python-pip'
- 'python-wheel'
- 'python-setuptools'

source:
- 'skip-test.diff'
- 'https://github.com/mesonbuild/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz'

sha256sums:
- SKIP
- SKIP

build: |
  cd ${pkgname}-${pkgver}
  patch -Np1 -i ../skip-test.diff

  pip3 wheel -w dist \
    --no-build-isolation \
    --no-deps $PWD
  pip3 install --no-index \
    --find-links dist \
    --no-cache-dir    \
    --no-user         \
    --root=${PKGDIR}       \
    --ignore-installed\
    meson

  install -Dm644 COPYING ${PKGDIR}/usr/share/licenses/${pkgname}/COPYING

package: |
  true