Skip to content
Permalink
Newer
Older
100755 27 lines (18 sloc) 475 Bytes
October 18, 2016 10:29
1
#!/bin/env beesh
2
3
# BEE_VERSION flashplayer-24.0.0.186-0
4
October 18, 2016 10:29
5
# http://labs.adobe.com/technologies/flashplayer10/square/
6
7
# http://get.adobe.com/flashplayer/
8
9
SRCURL[0]="/src/mariux/download/flash_player_npapi_${PKGVERSION}_linux.x86_64.tar.gz"
October 18, 2016 10:29
10
11
BEE_CONFIGURE=none
12
13
B=${S}
14
15
mee_extract() {
16
tar xof ${1} -C ${S}
17
}
18
19
mee_build() {
20
return
21
}
22
23
mee_install() {
24
#for Firefox
October 18, 2016 10:29
25
mkdir -p ${D}${LIBDIR}/mozilla/plugins
26
cp libflashplayer.so ${D}${LIBDIR}/mozilla/plugins
27
}