-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix SRCURL - beautify be0 - disable color, be verbose
- Loading branch information
Showing
1 changed file
with
25 additions
and
19 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,38 @@ | ||
#!/bin/env beesh | ||
|
||
#BEE_VERSION sdl2-2.0.4-0 | ||
#BEE_VERSION sdl2-2.0.10-0 | ||
|
||
SRCURL[0]="http://www.libsdl.org/release/SDL2-${PKGVERSION}.tar.gz" | ||
SRCURL[0]="https://www.libsdl.org/release/SDL2-${PKGVERSION}.tar.gz" | ||
|
||
PATCHURL[0]="" | ||
# PATCHURL+=() | ||
|
||
PGRP=( uncategorized ) | ||
# build_in_sourcedir | ||
|
||
# sourcesubdir_append src | ||
|
||
#mee_extract() { | ||
# bee_extract "${@}" | ||
#} | ||
|
||
# BEE_CONFIGURE=compat | ||
#mee_patch() { | ||
# bee_patch "${@}" | ||
#} | ||
|
||
# EXCLUDE="" | ||
|
||
mee_patch() { | ||
bee_patch | ||
mee_configure_pre() { | ||
( | ||
echo "CMAKE_COLOR_MAKEFILE=OFF" | ||
echo "CMAKE_VERBOSE_MAKEFILE=ON" | ||
) >> ${B}/CMakeCache.txt | ||
} | ||
|
||
mee_configure() { | ||
bee_configure | ||
} | ||
#mee_build() { | ||
# bee_build | ||
#} | ||
|
||
mee_build() { | ||
bee_build | ||
} | ||
|
||
mee_install() { | ||
bee_install | ||
} | ||
#mee_install() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |