first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/libvdpau/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/libvdpau/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 1.5
First version

20
src/libvdpau/pkg.sh Normal file
View File

@ -0,0 +1,20 @@
NAME="libvdpau"
DESC="Library which implements the VDPAU library"
VERSION="1.5"
FILES=("https://gitlab.freedesktop.org/vdpau/libvdpau/-/archive/$VERSION/libvdpau-$VERSION.tar.bz2")
HASHES=("148a192110e7a49d62c0bf9ef916c099")
DEPENDS=("xorgproto" "libxext" "mesa")
PACKAGE() {
tar xf $NAME-$VERSION.tar.bz2
cd $NAME-$VERSION
mkdir build
cd build
meson setup --prefix=$XORG_PREFIX ..
ninja && DESTDIR="$ROOTDIR" ninja install
mv -v "$ROOTDIR/$XORG_PREFIX/share/doc/libvdpau"{,1.5}
cd ../.. && rm -r $NAME-$VERSION
}