Permalink
Newer
100755
64 lines (50 sloc)
1.44 KB
5
#SRCURL[0]="https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PKGVERSION}.tar.xz"
6
SRCURL[0]="https://beehive.molgen.mpg.de/c505fb818b36988daaa846e9e63eabe8/gstreamer-1.16.1.tar.xz"
7
8
# PATCHURL+=()
9
10
# EXCLUDE+=()
11
12
# build_in_sourcedir
13
14
# sourcesubdir_append src
15
16
#mee_extract() {
17
# bee_extract "${@}"
18
#}
19
25
mee_patch_post() {
26
# install would try
27
# setcap cap_net_bind_service,cap_net_admin+ep /usr/libexec/gstreamer-1.0/gst-ptp-helper
28
sed -i 's/HAVE_PTP=yes/HAVE_PTP=no/' configure
29
}
30
38
39
#mee_build() {
40
# bee_build
41
#}
42
43
#mee_install() {
44
# bee_install
45
#}
46
## by default this may be 'make install DESTDIR="${D}"'
47
48
###############################################################################
49
##
50
## Additional hints:
51
##
52
## The name of this bee-file should follow the following naming convention:
53
## pkgname-pkgversion-pkgrevision.bee
54
##
55
## You may remove all comments as long as SRCURL[0]="" is set.
56
##
57
## Everything in this file will be executed in a bash environment.
58
##
59
## Build the package by executing
60
## './pkg-version-N.bee' or
61
## 'beesh ./pkg-version-N.bee'
62
##
63
## see http://beezinga.org/
64
##