mirror of https://gitlab.com/tildes/tildes.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
586 B
13 lines
586 B
---
|
|
- name: Download pts_lbsearch code from GitHub
|
|
get_url:
|
|
dest: /tmp/pts_lbsearch.c
|
|
url: https://raw.githubusercontent.com/pts/pts-line-bisect/2ecd9f59246cfa28cb1aeac7cd8d98a8eea2914f/pts_lbsearch.c
|
|
checksum: sha256:ef79efc2f1ecde504b6074f9c89bdc71259a833fa2a2dda4538ed5ea3e04aea1
|
|
|
|
- name: Compile pts_lbsearch
|
|
command:
|
|
chdir: /tmp
|
|
# compilation command taken from the top of the source file
|
|
cmd: gcc -ansi -W -Wall -Wextra -Werror=missing-declarations -s -O2 -DNDEBUG -o /usr/local/bin/pts_lbsearch pts_lbsearch.c
|
|
creates: /usr/local/bin/pts_lbsearch
|