mirror of
https://github.com/kennethreitz-archive/heroku-splinder.git
synced 2026-06-05 23:40:17 +00:00
16 lines
368 B
Makefile
16 lines
368 B
Makefile
build:
|
|
curl -O http://rsync.samba.org/ftp/rsync/rsync-3.0.9.tar.gz
|
|
tar xvfz rsync-3.0.9.tar.gz
|
|
cd rsync-3.0.9 && ./configure --prefix=/app/ && make && make install
|
|
|
|
./get-wget-warc.sh
|
|
|
|
|
|
run:
|
|
./dld-streamer.sh kenneth 25
|
|
|
|
upload:
|
|
PATH=bin:/usr/local/bin:/usr/bin:/bin:/app/bin/ ./upload-finished.sh batcave.textfiles.com::kenneth/splinder/
|
|
|
|
all: build run upload
|