-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a3421b
commit 094bc47
Showing
1 changed file
with
35 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
TERMUX_PKG_HOMEPAGE=https://github.com/dosemu2/dosemu2 | ||
TERMUX_PKG_DESCRIPTION=" " | ||
TERMUX_PKG_LICENSE="GPL-2.0" | ||
TERMUX_PKG_MAINTAINER="@tur" | ||
TERMUX_PKG_VERSION=$(date +"%y%m%d") | ||
TERMUX_PKG_REVISION=1 | ||
TERMUX_PKG_SRCURL=git+https://github.com/john-peterson/3dstool | ||
TERMUX_PKG_GIT_BRANCH=termux | ||
TERMUX_PKG_DEPENDS=" cmake, capstone" | ||
#TERMUX_PKG_BUILD_DEPENDS="libbthread, fdpp" | ||
TERMUX_PKG_AUTO_UPDATE=true | ||
TERMUX_PKG_BUILD_IN_SRC=true | ||
TERMUX_PKG_FORCE_CMAKE=true | ||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" | ||
-DUSE_DEP=OFF | ||
" | ||
TERMUX_PKG_EXTRA_MAKE_ARGS=" VERBOSE=1" | ||
if $TERMUX_ON_DEVICE_BUILD; then TERMUX_PKG_MAKE_PROCESSES=1;fi | ||
|
||
if !$TERMUX_ON_DEVICE_BUILD; then | ||
echo " build works but script untested " | ||
exit | ||
fi | ||
|
||
termux_step_post_get_source() { | ||
|
||
} | ||
|
||
termux_step_pre_configure() { | ||
|
||
} | ||
|
||
termux_step_post_configure(){ | ||
local CFLAGS+=" -w -Wno-error -Wfatal-errors" | ||
} |