#!/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 }