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

recipes/gui/libheif/PAGBUILD.yaml main

30 linii Raw ← Powrót
123456789101112131415161718192021222324252627282930
pkgname: libheif
pkgver: '1.23.1'
pkgrel: '1'
pkgdesc: 'The libheif package is an HEIF and AVIF file format decoder and encoder. '
url: 'https://github.com/strukturag/libheif'
arch: x86_64
depends: []
makedepends:
- ninja
- cmake
- libaom

source:
- 'https://github.com/strukturag/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz'

sha256sums:
- SKIP

build: |
  cd ${pkgname}-${pkgver}
  mkdir build
  cd build
  cmake -DCMAKE_INSTALL_PREFIX=/usr \
        -DCMAKE_BUILD_TYPE=Release  \
        -G Ninja ..
  ninja
  DESTDIR=${PKGDIR} ninja install

package: |
  true