Compare commits
16
Commits
5c334d0536
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a86589bcf4
|
||
|
|
643dd04cd9
|
||
|
|
44b9d21bf8
|
||
|
|
8a42c7cd4a
|
||
|
|
dfc2a85321
|
||
|
|
98d44701a7
|
||
|
|
21f0b76342
|
||
|
|
70ce4afcda
|
||
|
|
1969510768
|
||
|
|
3eca7f4e28
|
||
|
|
4aee0f907c
|
||
|
|
93989eeb07
|
||
|
|
6718bafa10
|
||
|
|
fb80732d81
|
||
|
|
561394d7a5
|
||
|
|
376fa225b5
|
@@ -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')
|
||||
|
||||
# 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"
|
||||
|
||||
+17
-5
@@ -1,9 +1,11 @@
|
||||
name: gst-plugins-bad
|
||||
description: Gstreamer bad plugins
|
||||
version: 1.27.50
|
||||
revision: 1
|
||||
version: 1.29.1
|
||||
revision: 7
|
||||
url: https://gstreamer.freedesktop.org/
|
||||
license: LGPL2.1-or-later
|
||||
maintainers:
|
||||
- [email protected]
|
||||
architecture: any
|
||||
type: source
|
||||
depends:
|
||||
@@ -13,28 +15,38 @@ depends:
|
||||
- gcc-libs
|
||||
- glib
|
||||
- glibc
|
||||
- gstreamer
|
||||
- gst-plugins-base
|
||||
- gsm
|
||||
- gst-plugins-base=1.29.1
|
||||
- json-glib
|
||||
- libass
|
||||
- libde265
|
||||
- libdvdnav
|
||||
- libdvdread
|
||||
- libfdk-aac
|
||||
- liblc3
|
||||
- libldac
|
||||
- libmpcdec
|
||||
- librsvg
|
||||
- libsndfile
|
||||
- libwebp
|
||||
- libxml2
|
||||
- neon
|
||||
- nettle
|
||||
- openexr
|
||||
- openh264
|
||||
- openjpeg
|
||||
- openssl
|
||||
- opus
|
||||
- pango
|
||||
- svt-av1
|
||||
- x265
|
||||
- zxing-cpp
|
||||
make_depends:
|
||||
- meson
|
||||
- wayland
|
||||
- wayland-protocols
|
||||
downloads:
|
||||
- url: https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-${BPM_PKG_VERSION}.tar.xz
|
||||
extract_to: ${BPM_SOURCE}
|
||||
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 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"
|
||||
|
||||
# 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