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 41 lines (29 sloc) 772 Bytes
#!/usr/bin/env beesh
# BEE_VERSION enchant-2.2.7-0
SRCURL[0]="https://github.com/AbiWord/enchant/releases/download/v${PKGVERSION}/enchant-${PKGVERSION}.tar.gz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
bee_configure \
--disable-static
}
#mee_build() {
# bee_build
#}
#mee_install() {
# bee_install
#}
mee_install_post() {
ln -sfv enchant-2 ${D}/usr/include/enchant &&
ln -sfv enchant-2 ${D}/usr/bin/enchant &&
ln -sfv libenchant-2.so ${D}/usr/lib/libenchant.so &&
ln -sfv libenchant-2.so ${D}/usr/lib/libenchant.so.1 &&
ln -sfv enchant-2.pc ${D}/usr/lib/pkgconfig/enchant.pc
}