repo/git/PACKAGE

14 lines
173 B
Text
Raw Normal View History

#!/bin/sh
pkgver="todo"
pkg_install() {
git clone git://git.kernel.org/pub/scm/git/git.git
cd git
make
make install DESTDIR="$1"
}
pkg_uninstall() {
make uninstall
}