mirror of
https://github.com/termux/termux-packages.git
synced 2025-03-02 19:15:59 +00:00
The termux_git_clone_src script has been updated and now expects git urls to start with git+ instead. %ci:no-build
14 lines
443 B
Bash
14 lines
443 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/been-jamming/rubiks_cube
|
|
TERMUX_PKG_DESCRIPTION="A rubik's cube that runs in your terminal"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=1.2
|
|
TERMUX_PKG_SRCURL=git+https://github.com/been-jamming/rubiks_cube
|
|
TERMUX_PKG_DEPENDS="ncurses"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_GROUPS="games"
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 -t $TERMUX_PREFIX/bin rubiks_cube
|
|
}
|