14 lines
173 B
Text
14 lines
173 B
Text
|
#!/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
|
||
|
}
|