Skip to content
Permalink
Newer
Older
100755 53 lines (37 sloc) 927 Bytes
March 9, 2017 15:25
1
#!/usr/bin/env beesh
2
3
# BEE_VERSION exfat-1.2.7-0
March 9, 2017 15:25
4
5
## The source URL(s) array
6
SRCURL[0]="https://github.com/relan/exfat/archive/v${PKGVERSION}.tar.gz"
7
8
## Add URLs/paths to patch files
9
# PATCHURL+=()
10
11
## files that should not be added from the image directory.
12
# EXCLUDE+=()
13
14
15
## uncomment to change default
16
# build_in_sourcedir
17
18
## specify different source directory
19
# sourcesubdir_append src
20
21
22
#mee_extract() {
23
# bee_extract "${@}"
24
#}
25
26
#mee_patch() {
27
# bee_patch "${@}"
28
#}
29
30
# this 'patch'-operation bootstraps the build, afterwards bee happily uses 'autotools'
31
mee_patch_post() {
32
autoreconf --install
33
}
34
35
#mee_configure() {
36
# bee_configure
37
#}
38
39
#mee_build() {
40
# bee_build
41
#}
42
43
## mee_install() should install into "${D}"
44
## default: 'make install DESTDIR="${D}"'
45
46
#mee_install() {
47
# bee_install
48
#}
49
50
mee_install_post() {
51
start_cmd mkdir ${D}/sbin
52
start_cmd ln -s ${D}/usr/sbin/mount.exfat ${D}/sbin/
53
}