Skip to content
Permalink
Newer
Older
100755 41 lines (29 sloc) 772 Bytes
1
#!/usr/bin/env beesh
2
3
# BEE_VERSION enchant-2.2.7-0
June 6, 2016 09:50
4
5
SRCURL[0]="https://github.com/AbiWord/enchant/releases/download/v${PKGVERSION}/enchant-${PKGVERSION}.tar.gz"
June 6, 2016 09:50
6
7
# PATCHURL+=()
8
9
# build_in_sourcedir
June 6, 2016 09:50
10
11
# sourcesubdir_append src
June 6, 2016 09:50
12
13
#mee_extract() {
14
# bee_extract "${@}"
15
#}
June 6, 2016 09:50
16
17
#mee_patch() {
18
# bee_patch "${@}"
19
#}
June 6, 2016 09:50
20
21
mee_configure() {
22
bee_configure \
23
--disable-static
24
}
June 6, 2016 09:50
25
26
#mee_build() {
27
# bee_build
28
#}
June 6, 2016 09:50
29
30
#mee_install() {
31
# bee_install
32
#}
June 6, 2016 09:50
33
34
mee_install_post() {
35
ln -sfv enchant-2 ${D}/usr/include/enchant &&
36
ln -sfv enchant-2 ${D}/usr/bin/enchant &&
37
ln -sfv libenchant-2.so ${D}/usr/lib/libenchant.so &&
38
ln -sfv libenchant-2.so ${D}/usr/lib/libenchant.so.1 &&
39
ln -sfv enchant-2.pc ${D}/usr/lib/pkgconfig/enchant.pc
40
}
41