66 lines
2.1 KiB
Bash
66 lines
2.1 KiB
Bash
# Maintainer: Biswapriyo Nath <nathbappai@gmail.com>
|
|
|
|
_realname=libva
|
|
pkgbase=mingw-w64-${_realname}
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-${_realname}")
|
|
pkgver=2.22.0
|
|
pkgrel=2
|
|
pkgdesc='Video Acceleration (VA) API (mingw-w64)'
|
|
arch=('any')
|
|
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clangarm64')
|
|
url='https://intel.github.io/libva/'
|
|
msys2_repository_url='https://github.com/intel/libva'
|
|
msys2_references=(
|
|
'purl: pkg:github/intel/libva'
|
|
)
|
|
license=('spdx:MIT')
|
|
makedepends=("${MINGW_PACKAGE_PREFIX}-meson"
|
|
"${MINGW_PACKAGE_PREFIX}-ninja"
|
|
"${MINGW_PACKAGE_PREFIX}-cc")
|
|
source=("${_realname}-${pkgver}.tar.gz::https://github.com/intel/libva/archive/refs/tags/${pkgver}.tar.gz"
|
|
"0001-libva-add-driver-path-relocation.patch"
|
|
"0002-libva-allow-static-library.patch")
|
|
sha256sums=('467c418c2640a178c6baad5be2e00d569842123763b80507721ab87eb7af8735'
|
|
'1cc40ae0b25f462fa0cb4c4717ea7728e8ff0d83c13197035525ff76c0947ad3'
|
|
'd2892f008523a24fca707b501a56141eae2aee3b2ea1d708a15cc50da6082430')
|
|
|
|
prepare() {
|
|
cd "${srcdir}"/${_realname}-${pkgver}
|
|
|
|
patch -Np1 -i "${srcdir}/0001-libva-add-driver-path-relocation.patch"
|
|
patch -Np1 -i "${srcdir}/0002-libva-allow-static-library.patch"
|
|
}
|
|
|
|
build() {
|
|
MSYS2_ARG_CONV_EXCL="--prefix=" \
|
|
meson setup \
|
|
--prefix="${MINGW_PREFIX}" \
|
|
--wrap-mode=nodownload \
|
|
--auto-features=enabled \
|
|
--buildtype=plain \
|
|
--default-library=static \
|
|
"build-${MSYSTEM}-static" \
|
|
"${_realname}-${pkgver}"
|
|
|
|
meson compile -C "build-${MSYSTEM}-static"
|
|
|
|
MSYS2_ARG_CONV_EXCL="--prefix=" \
|
|
meson setup \
|
|
--prefix="${MINGW_PREFIX}" \
|
|
--wrap-mode=nodownload \
|
|
--auto-features=enabled \
|
|
--buildtype=plain \
|
|
--default-library=shared \
|
|
"build-${MSYSTEM}-shared" \
|
|
"${_realname}-${pkgver}"
|
|
|
|
meson compile -C "build-${MSYSTEM}-shared"
|
|
}
|
|
|
|
package() {
|
|
meson install -C "build-${MSYSTEM}-static" --destdir "${pkgdir}"
|
|
meson install -C "build-${MSYSTEM}-shared" --destdir "${pkgdir}"
|
|
|
|
install -Dm644 "${srcdir}/${_realname}-${pkgver}/COPYING" "${pkgdir}${MINGW_PREFIX}/share/licenses/${_realname}/COPYING"
|
|
}
|