14 lines
191 B
Bash
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
|
|
}
|