123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #!/bin/bash
- [ "x${DEBUG+set}" = 'xset' ] && set -v
- set -u -e
- printf "Downloading bucts\n"
- rm -Rf "bucts/"
- git clone git://git.stuge.se/bucts.git
- cd "bucts/"
- printf "Patching bucts to not require git for building\n"
- git reset --hard dc27919d7a66a6e8685ce07c71aefa4f03ef7c07
- git am "../resources/bucts/patch/0001-Makefile-don-t-use-git.patch"
- cd "../"
- printf "\n\n"
|