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 47 lines (34 sloc) 890 Bytes
#!/usr/bin/env beesh
# BEE_VERSION flex-2.6.4-2
# more info: https://github.com/westes/flex
# https://www.archlinux.org/packages/core/x86_64/flex/
# SRCURL[0]="https://github.com/westes/flex/releases/download/v${PKGVERSION}/flex-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/2882e3179748cc9f9c23ec593d6adc8d/flex-2.6.4.tar.gz"
PATCHURL+=( "https://beehive.molgen.mpg.de/0a8e8242b37c57b0bc0c6f673bceb5b7/flex-pie.patch" )
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
# delivered configure wants aclocal-1.15
mee_configure_pre() {
cd ${S}
./autogen.sh
}
mee_configure() {
bee_configure \
--disable-nls
}
#mee_build() {
# bee_build
#}
#mee_install() {
# bee_install
#}
mee_install_post() {
ln -s flex ${D}/usr/bin/lex
rm -rvf ${D}/usr/share/doc
}