Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 56 lines (41 sloc) 1.11 KB
#!/usr/bin/env beesh
# BEE_VERSION libthai-0.1.29-1
# more info: https://foo.bar.com
SRCURL[0]="https://github.com/tlwg/libthai/releases/download/v0.1.29/libthai-0.1.29.tar.xz"
SRCURL[1]="https://github.com/tlwg/libdatrie/releases/download/v0.2.13/libdatrie-0.2.13.tar.xz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure_pre() {
# libdatrie
mkdir -p ${B}/libdatrie
cd ${B}/libdatrie
# ${S}/libdatrie-0.2.13/autogen.sh \
CFLAGS="-O2 -fPIC" \
${S}/libdatrie-0.2.13/configure \
--prefix=${B}/extras \
--disable-shared \
--disable-documentation \
make ${BEE_MAKEFLAGS}
make install
cd ${B}
}
mee_configure() {
# PKG_CONFIG_PATH=${B}/extras/lib/pkgconfig \
# DATRIE_LIBS="-L${B}/extras/lib ${B}/extras/lib/libdatrie.a" \
DATRIE_CFLAGS="-I${B}/extras/include" \
DATRIE_LIBS="-L${B}/extras/lib -l:libdatrie.a" \
bee_configure --disable-dict --disable-doxygen-doc
}
#mee_build() {
# bee_build
#}
#mee_install() {
# bee_install
#}