# Description: git-annex - manage files with git without checking file contents into git # URL: http://git-annex.branchable.com/ # Maintainer: Sean Whitton, sean at silentflame dot com # Depends on: libpcre libffi git uuid # NOTE: this is a binary package as I can't get git-annex to build # with CRUX's haskell packages name=git-annex version=3.20111203 release=1 source=(http://ftp.de.debian.org/debian/pool/main/g/$name/${name}_${version}_i386.deb) build() { cd $SRC ar xv ${name}_${version}_i386.deb tar xvfz data.tar.gz mkdir -p $PKG/usr/{bin,lib} cp usr/bin/* $PKG/usr/bin/ # need this to get Debian's build to run on CRUX ln -s -T libpcre.so.0.0.1 $PKG/usr/lib/libpcre.so.3 }