prevent accidents with the general build environment. More changes in the build system and other section build files to follow. -> Fixed library path in base/libical build file to prevent creation of lib64 directory -> Fixed code that searches for an SMBuild file inside a package installer when installing from a package using base/pkgtools's installpkg script -> Added a missing brace in base/findutils build file -> Upgraded base/ntfs-3g to 2021.8.22 -> Temporarily removed rm -f command used to discard man pages in base/openssl build file -> Added if/else check in base/rust build file to only extract rust toolchain in the absence of rust installation on the system -> Upgraded base/syssstat to 12.5.5
37 lines
820 B
Text
Executable file
37 lines
820 B
Text
Executable file
app=gstreamer
|
|
version=1.16.2
|
|
build=1sml
|
|
homepage='https://gstreamer.freedesktop.org/'
|
|
download='https://gstreamer.freedesktop.org/data/src/gstreamer/gstreamer-1.16.2.tar.xz'
|
|
desc="streaming multimedia framework"
|
|
requires="glib pcre libffi zlib"
|
|
|
|
build() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
mkdir -p smbuild && cd smbuild
|
|
|
|
meson .. \
|
|
--prefix="/" \
|
|
--sysconfdir=/etc \
|
|
--buildtype=plain \
|
|
-Dintrospection=disabled \
|
|
-Dbash-completion=disabled
|
|
|
|
ninja
|
|
DESTDIR="$pkg" ninja install
|
|
cd ..
|
|
|
|
cp COPYING $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
34ad259bfe20f38a5c499dece285c24231c4585d6165603ec4aaa6ba3062b5560a69abcf1bc6864691982fc99c431af88c7f96fcff6db35b50b4e1463809d900 gstreamer-1.16.2.tar.lz
|
|
"
|