gstreamer 1.24.2-1

This commit is contained in:
xhaa123 2024-04-17 10:10:42 +08:00
commit 083cf9f009

36
PKGBUILD Normal file
View File

@ -0,0 +1,36 @@
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Future Linux Team <future_linux@163.com>
pkgname=gstreamer
pkgver=1.24.2
pkgrel=1
pkgdesc="Multimedia graph framework - core"
arch=('x86_64')
url="https://gstreamer.freedesktop.org/"
license=('LGPL-2.1-or-later')
depends=('glib2')
makedepends=('meson')
source=(https://gstreamer.freedesktop.org/src/${pkgname}/${pkgname}-${pkgver}.tar.xz)
sha256sums=(9cafdd23bd180f1681c56cd3a6879a8497ccf24da6f422a6b6f356fa074a8481)
build() {
cd ${pkgname}-${pkgver}
meson setup build \
--prefix=/usr \
--buildtype=release \
-Dgst_debug=false \
-Dpackage-name="GStreamer (Future Linux)" \
-Dpackage-origin="https://futurelinux.xyz"
meson compile -C build
}
package() {
cd ${pkgname}-${pkgver}
meson install -C build --destdir ${pkgdir}
}