repo/git/PACKAGE

15 lines
191 B
Text
Raw Permalink Normal View History

#!/bin/sh
pkgver="todo"
2021-07-02 01:25:01 +03:00
pkgdeps="openssl"
pkg_install() {
git clone git://git.kernel.org/pub/scm/git/git.git
cd git
make
make install DESTDIR="$1"
}
pkg_uninstall() {
make uninstall
}