I hereby claim:
- I am rostockahoi on github.
- I am joah (https://keybase.io/joah) on keybase.
- I have a public key ASACimqoNS_Ib-uFzbqvxtyVJfZuHlYgFx_SZouOYx64Cgo
To claim this, I am signing this object:
| ################################################ | |
| # The Makefile | |
| # | |
| ### @version 0.2 | |
| ### @link https://gist.github.com/rostockahoi/beb31c907de6a32c28bac976672de3f9 | |
| ### @author Johannes Ahrndt | |
| ### @copyright @webhubworks - webhub GmbH | |
| ################################################ | |
| .SILENT: |
| { | |
| "info":{ | |
| "_postman_id":"ca72bd7c-e45c-4894-a57b-ab8f33141af3", | |
| "name":"Craftnet", | |
| "schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | |
| }, | |
| "item":[ | |
| { | |
| "name":"Craft plugin license generator", | |
| "request":{ |
| # Run as root | |
| # Micro: https://github.com/zyedidia/micro | |
| curl -s https://api.github.com/repos/zyedidia/micro/releases/latest \ | |
| | grep "browser_download_url.*linux64.tar.gz" \ | |
| | cut -d : -f 2,3 \ | |
| | tr -d \" \ | |
| | wget --quiet --show-progress -O /tmp/tmp-micro.tar.gz -i - && \ | |
| tar -xzf /tmp/tmp-micro.tar.gz --directory /tmp && \ | |
| cp /tmp/micro*/micro /usr/local/bin && \ | |
| rm -r /tmp/micro* && rm /tmp/tmp-micro.tar.gz |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| if [ "$EUID" -ne 0 ] | |
| then echo "Please run as root" | |
| exit | |
| fi | |
| apt-get install pkg-config libmagickwand-dev -y | |
| cd /tmp | |
| wget https://pecl.php.net/get/imagick-3.4.3.tgz | |
| tar xvzf imagick-3.4.3.tgz |