My Ubuntu environment
 
 
Go to file
Anthony Axenov ad34d5c64a
Makefile instead of start.sh + generator
2022-07-04 17:56:45 +08:00
install Makefile instead of start.sh + generator 2022-07-04 17:56:45 +08:00
scripts Перезалив репозитория 2021-12-27 19:37:19 +08:00
.gitignore Makefile instead of start.sh + generator 2022-07-04 17:56:45 +08:00
Makefile Makefile instead of start.sh + generator 2022-07-04 17:56:45 +08:00
README.md Makefile instead of start.sh + generator 2022-07-04 17:56:45 +08:00
gen-makefile.sh Makefile instead of start.sh + generator 2022-07-04 17:56:45 +08:00

README.md

My Ubuntu environment

make-ready bunch of scripts for easily installation of different software.

Prerequisites

  • bash, zsh or other sh-compatible shell
  • make
  • git or wget

Usage

# if git is installed
git clone git@git.axenov.dev:anthony/my-env.git --depth=1

# if git is not installed
wget -qO - https://git.axenov.dev/anthony/my-env/archive/master.tar.gz | tar -zxf -

# switch to repo dir
cd my-env

# get full list of `make` goals
make help

# generate new ./Makefile and get full list of `make` goals
./gen-makefile.sh

Selective straightforward installation

# from remote file
wget -qO - https://git.axenov.dev/anthony/my-env/raw/branch/master/install/apt.sh | bash

# from locally cloned repo
./install/apt.sh

How to add a new software script here

  1. Create new ./install/*.sh script.
    At the beggining of a file you must write these two lines:
    #!/bin/bash
    ##makedesc: Your description for Makefile
    
  2. Test your script
  3. Run ./gen-makefile.sh to generate new ./Makefile