20 lines
664 B
Bash
20 lines
664 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/TheLocehiliosan/yadm
|
|
TERMUX_PKG_DESCRIPTION="Yet Another Dotfiles Manager"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_VERSION=2.4.0
|
|
TERMUX_PKG_SRCURL=https://github.com/TheLocehiliosan/yadm/archive/$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=37efea63dc9c77951433c841bde34e0a042dc561e8c026e690d146e768701b0f
|
|
TERMUX_PKG_DEPENDS="git"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_make() {
|
|
# Do not try to run 'make' as this causes
|
|
# build failure.
|
|
return
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 "$TERMUX_PKG_SRCDIR"/yadm "$TERMUX_PREFIX"/bin/
|
|
install -Dm600 "$TERMUX_PKG_SRCDIR"/yadm.1 "$TERMUX_PREFIX"/share/man/man1/
|
|
}
|