Permalink
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?
bee-files/libev.be0
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The be0 conversion did more than advertized, and used the new bee file template, but forgot to migrate the INCLUEDIR variable setting. This causes a conflict for the header file `/usr/include/event.h`. $ sudo bee query /usr/include/event.h libev-4.11-1.x86_64 /usr/include/event.h libevent-2.0.21-0.x86_64 /usr/include/event.h This causes several build errors, as the one from libevent is expected by most programs. Fix this, by changing the include directory again. Increment the revision to 2. Fixes: 2b7d809 ("libev: be0 conversion and update SRCURL")
executable file
33 lines (22 sloc)
454 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env beesh | |
# BEE_VERSION libev-4.11-2 | |
SRCURL[0]="https://github.com/justmirror/libev/archive/${PKGVERSION}.tar.gz libev-${PKGVERSION}.tar.gz" | |
# PATCHURL+=() | |
# build_in_sourcedir | |
# sourcesubdir_append src | |
INCLUDEDIR='${PREFIX}/include/ev' | |
#mee_extract() { | |
# bee_extract "${@}" | |
#} | |
#mee_patch() { | |
# bee_patch "${@}" | |
#} | |
#mee_configure() { | |
# bee_configure | |
#} | |
#mee_build() { | |
# bee_build | |
#} | |
#mee_install() { | |
# bee_install | |
#} |