-
Notifications
You must be signed in to change notification settings - Fork 0
Permalink
bee-files/libvdpau.be0
Newer
100755
46 lines (29 sloc)
701 Bytes
3
# BEE_VERSION libvdpau-1.1.1-0
4
5
SRCURL[0]="http://people.freedesktop.org/~aplattner/vdpau/libvdpau-${PKGVERSION}.tar.gz"
6
7
# PATCHURL+=()
8
9
# EXCLUDE+=()
10
11
# build_in_sourcedir
12
13
# sourcesubdir_append src
14
15
16
#mee_extract() {
17
# bee_extract "${@}"
18
#}
19
20
#mee_patch() {
21
# bee_patch "${@}"
22
#}
23
24
#mee_configure() {
25
# bee_configure
26
#}
27
28
#mee_build() {
29
# bee_build
30
#}
31
32
#mee_install() {
33
# bee_install
34
#}
35
## by default this may be 'make install DESTDIR="${D}"'
36
37
mee_install_post() {
38
mkdir -p ${D}/usr/share/mxgfx-generic/lib
39
40
dest=$(readlink -f ${D}${LIBDIR}/libvdpau.so.1)
41
dest=${dest##${D}}
42
43
ln -svf ${dest} ${D}/usr/share/mxgfx-generic/lib/libvdpau.so.1
44
}
45
46