repo/git/PACKAGE
2021-07-02 00:25:01 +02:00

14 lines
191 B
Bash

#!/bin/sh
pkgver="todo"
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
}