Date: Thursday, November 17, 2022 @ 18:12:55
Author: heftig
Revision: 462118
archrelease: copy trunk to extra-x86_64
Added:
libvpx/repos/extra-x86_64/PKGBUILD
(from rev 462117, libvpx/trunk/PKGBUILD)
Deleted:
libvpx/repos/extra-x86_64/PKGBUILD
----------+
PKGBUILD | 114 +++++++++++++++++++++++++++++++------------------------------
1 file changed, 58 insertions(+), 56 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-11-17 18:12:02 UTC (rev 462117)
+++ PKGBUILD 2022-11-17 18:12:55 UTC (rev 462118)
@@ -1,56 +0,0 @@
-# Maintainer: Maxime Gauduin <[email protected]>
-# Contributor: Ionut Biru <[email protected]>
-# Contributor: Bartłomiej Piotrowski <[email protected]>
-
-pkgname=libvpx
-pkgver=1.12.0
-pkgrel=1
-pkgdesc='VP8 and VP9 codec'
-arch=(x86_64)
-url=https://www.webmproject.org/
-license=(BSD)
-depends=(gcc-libs)
-makedepends=(
- git
- nasm
-)
-provides=(libvpx.so)
-_tag=03265cd42b3783532de72f2ded5436652e6f5ce3
-source=(git+https://chromium.googlesource.com/webm/libvpx#tag=${_tag})
-sha256sums=(SKIP)
-
-pkgver() {
- cd libvpx
-
- git describe --tags | sed 's/^v//'
-}
-
-build() {
- cd libvpx
-
- CFLAGS+=' -ffat-lto-objects'
- CXXFLAGS+=' -ffat-lto-objects'
-
- ./configure \
- --prefix=/usr \
- --disable-install-docs \
- --disable-install-srcs \
- --enable-pic \
- --enable-postproc \
- --enable-runtime-cpu-detect \
- --enable-shared \
- --enable-vp8 \
- --enable-vp9 \
- --enable-vp9-highbitdepth \
- --enable-vp9-temporal-denoising
- make
-}
-
-package() {
- cd libvpx
-
- make DIST_DIR="${pkgdir}"/usr install
- install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/libvpx/
-}
-
-# vim: ts=2 sw=2 et:
Copied: libvpx/repos/extra-x86_64/PKGBUILD (from rev 462117,
libvpx/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-11-17 18:12:55 UTC (rev 462118)
@@ -0,0 +1,58 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: Ionut Biru <[email protected]>
+# Contributor: Bartłomiej Piotrowski <[email protected]>
+
+pkgname=libvpx
+pkgver=1.12.0
+pkgrel=2
+pkgdesc='VP8 and VP9 codec'
+arch=(x86_64)
+url=https://www.webmproject.org/
+license=(BSD)
+depends=(gcc-libs)
+makedepends=(
+ git
+ nasm
+)
+provides=(libvpx.so)
+options=(debug)
+_tag=03265cd42b3783532de72f2ded5436652e6f5ce3
+source=(git+https://chromium.googlesource.com/webm/libvpx#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+ cd libvpx
+
+ git describe --tags | sed 's/^v//'
+}
+
+build() {
+ cd libvpx
+
+ CFLAGS+=' -ffat-lto-objects'
+ CXXFLAGS+=' -ffat-lto-objects'
+
+ ./configure \
+ --prefix=/usr \
+ --disable-install-docs \
+ --disable-install-srcs \
+ --disable-unit-tests \
+ --enable-pic \
+ --enable-postproc \
+ --enable-runtime-cpu-detect \
+ --enable-shared \
+ --enable-vp8 \
+ --enable-vp9 \
+ --enable-vp9-highbitdepth \
+ --enable-vp9-temporal-denoising
+ make
+}
+
+package() {
+ cd libvpx
+
+ make DIST_DIR="${pkgdir}"/usr install
+ install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/libvpx/
+}
+
+# vim:set sw=2 sts=-1 et: