Permalink
Newer
100755
41 lines (28 sloc)
561 Bytes
1
#!/usr/bin/env beesh
2
3
# BEE_VERSION libarchive_compat-2.4.8-0
4
5
# more info: https://foo.bar.com
6
7
SRCURL[0]="/src/mariux/beeroot/packages/libarchive-2.8.4-0.x86_64.bee.tar.bz2"
8
9
BEE_BUILDTYPE=none
10
11
# PATCHURL+=()
12
13
# build_in_sourcedir
14
15
# sourcesubdir_append src
16
17
#mee_extract() {
18
# bee_extract "${@}"
19
#}
20
21
#mee_patch() {
22
# bee_patch "${@}"
23
#}
24
25
#mee_configure() {
26
# bee_configure
27
#}
28
29
#mee_build() {
30
# bee_build
31
#}
32
33
mee_install() {
34
pwd
35
mkdir -vp ${D}/usr/lib
36
cp -v ${S}/lib/libarchive.so.8 ${D}/usr/lib
37
}
38
39
#mee_install_post() {
40
# exit
41
#}