Compare commits
13
Commits
fb80732d81
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a86589bcf4
|
||
|
|
643dd04cd9
|
||
|
|
44b9d21bf8
|
||
|
|
8a42c7cd4a
|
||
|
|
dfc2a85321
|
||
|
|
98d44701a7
|
||
|
|
21f0b76342
|
||
|
|
70ce4afcda
|
||
|
|
1969510768
|
||
|
|
3eca7f4e28
|
||
|
|
4aee0f907c
|
||
|
|
93989eeb07
|
||
|
|
6718bafa10
|
@@ -0,0 +1,3 @@
|
|||||||
|
# Ignore BPM archives and signatures
|
||||||
|
*.bpm
|
||||||
|
*.bpm.sig
|
||||||
+1
-1
@@ -7,6 +7,6 @@ REPO="gstreamer/gstreamer"
|
|||||||
REPO=$(echo "$REPO" | sed 's|/|%2F|g')
|
REPO=$(echo "$REPO" | sed 's|/|%2F|g')
|
||||||
|
|
||||||
# Get tag name using Gitlab Rest API
|
# Get tag name using Gitlab Rest API
|
||||||
TAG_NAME=$(curl -s -L https://gitlab.freedesktop.org/api/v4/projects/"$REPO"/repository/tags | jq -r '.[].name' | sort -V | tail -n1)
|
TAG_NAME=$(curl -s -L https://gitlab.freedesktop.org/api/v4/projects/"$REPO"/repository/tags | jq -r '.[].name' | sort -V | grep -v '0$' | tail -n1)
|
||||||
|
|
||||||
echo "$TAG_NAME"
|
echo "$TAG_NAME"
|
||||||
|
|||||||
+13
-5
@@ -1,9 +1,11 @@
|
|||||||
name: gst-plugins-bad
|
name: gst-plugins-bad
|
||||||
description: Gstreamer bad plugins
|
description: Gstreamer bad plugins
|
||||||
version: 1.27.50
|
version: 1.29.1
|
||||||
revision: 4
|
revision: 7
|
||||||
url: https://gstreamer.freedesktop.org/
|
url: https://gstreamer.freedesktop.org/
|
||||||
license: LGPL2.1-or-later
|
license: LGPL2.1-or-later
|
||||||
|
maintainers:
|
||||||
|
- [email protected]
|
||||||
architecture: any
|
architecture: any
|
||||||
type: source
|
type: source
|
||||||
depends:
|
depends:
|
||||||
@@ -13,17 +15,22 @@ depends:
|
|||||||
- gcc-libs
|
- gcc-libs
|
||||||
- glib
|
- glib
|
||||||
- glibc
|
- glibc
|
||||||
- gstreamer
|
- gsm
|
||||||
- gst-plugins-base
|
- gst-plugins-base=1.29.1
|
||||||
- json-glib
|
- json-glib
|
||||||
- libass
|
- libass
|
||||||
|
- libde265
|
||||||
|
- libdvdnav
|
||||||
|
- libdvdread
|
||||||
- libfdk-aac
|
- libfdk-aac
|
||||||
- liblc3
|
- liblc3
|
||||||
- libldac
|
- libldac
|
||||||
|
- libmpcdec
|
||||||
- librsvg
|
- librsvg
|
||||||
- libsndfile
|
- libsndfile
|
||||||
- libwebp
|
- libwebp
|
||||||
- libxml2
|
- libxml2
|
||||||
|
- neon
|
||||||
- nettle
|
- nettle
|
||||||
- openexr
|
- openexr
|
||||||
- openh264
|
- openh264
|
||||||
@@ -31,6 +38,7 @@ depends:
|
|||||||
- openssl
|
- openssl
|
||||||
- opus
|
- opus
|
||||||
- pango
|
- pango
|
||||||
|
- svt-av1
|
||||||
- x265
|
- x265
|
||||||
- zxing-cpp
|
- zxing-cpp
|
||||||
make_depends:
|
make_depends:
|
||||||
@@ -41,4 +49,4 @@ downloads:
|
|||||||
- url: https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-${BPM_PKG_VERSION}.tar.xz
|
- url: https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-${BPM_PKG_VERSION}.tar.xz
|
||||||
extract_to: ${BPM_SOURCE}
|
extract_to: ${BPM_SOURCE}
|
||||||
extract_strip_components: 1
|
extract_strip_components: 1
|
||||||
checksum: b980b07dd7b2e557c44209e037c1d4b4bf1cf70a3c5cd7cd65506029e848b6e5
|
checksum: 629d70cdf75faca70805dbd5fa4db819f30c1f775b599f2d578d04eeb626ade5
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
|
# This is the recipe.sh script. It is executed by BPM in a temporary directory when compiling a source package
|
||||||
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
|
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
|
||||||
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
|
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
|
||||||
|
|
||||||
@@ -15,5 +15,5 @@ package() {
|
|||||||
meson install -C build --destdir="$BPM_OUTPUT"
|
meson install -C build --destdir="$BPM_OUTPUT"
|
||||||
|
|
||||||
# Install package license
|
# Install package license
|
||||||
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/gst-plugins-base/COPYING
|
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/gst-plugins-bad/COPYING
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user