My Ubuntu environment
 
 
Go to file
Anthony Axenov f20a161373
Merge branch 'master' of git.axenov.dev:anthony/my-env
2022-12-10 21:59:53 +08:00
dotfiles Merge branch 'master' of git.axenov.dev:anthony/my-env 2022-12-10 21:59:53 +08:00
install Merge branch 'master' of git.axenov.dev:anthony/my-env 2022-12-10 21:59:53 +08:00
packs phptools 2022-12-10 21:59:01 +08:00
tools ytdlcue fixes 2022-10-09 13:23:20 +08:00
uninstall lite-xl 2.1.0 2022-11-03 22:49:09 +08:00
upgrade Makefile generation improved 2022-08-26 08:25:55 +08:00
.editorconfig editorconfig 2022-08-19 20:57:45 +08:00
.gitignore inotifywait-cp 2022-09-28 07:41:07 +08:00
LICENSE Small fixes + WTFPLv2 2022-07-04 23:53:39 +08:00
Makefile Merge branch 'master' of git.axenov.dev:anthony/my-env 2022-12-10 21:59:53 +08:00
README.md Dockerfile removed, README fixes 2022-09-30 15:46:34 +08:00
gen-makefile gen-makefile is back 2022-09-30 15:48:27 +08:00

README.md

My Ubuntu environment

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

Requirements

  • Ubuntu >= 20.04 (not tested with version < 20)
  • bash, zsh or other POSIX-compatible shell
  • make (optional but recommended)
  • wget (necessary for some scripts)
  • git (necessary for some scripts)

If some dependecies are missed for some of these scripts it is enougth to run ./install/apt in most cases.

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

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

# get full list of `make` goals
make

Selective straightforward installation

# from remote file (you can meet interaction bugs this way!)
wget -qO - https://git.axenov.dev/anthony/my-env/raw/branch/master/install/apt | bash

# from locally cloned repo (except scripts from ./packs)
./install/apt

How to add my script?

  1. Create a new shell script in ./install, ./upgrade or ./uninstall directory.
    At the beggining of a file you must write these two lines:
    #!/bin/bash
    ##makedesc: Your description for Makefile
    
  2. Make this script executable, e.g.:
    sudo chmod a+x ./install/myscript
    
  3. Test your script
  4. Run make self to generate new ./Makefile

How to create a pack?

You can create new file inside ./packs dir.

Syntax is same as classic makefile. It is important to add a comment with short description:

# Pack description
mypack1: goal1 goal2 goalX ...
   ...

# Pack description
mypackX: goalA goalB
   @cp file1 file2
   ...
...

where:

  • mypack* is the pack name
  • goal* are script names in ./install

TODO

License

WTFPLv2