Add Makefile for easy installation
This commit is contained in:
parent
71a7aa985c
commit
f4c88dfc3f
1 changed files with 15 additions and 0 deletions
15
Makefile
Normal file
15
Makefile
Normal file
|
@ -0,0 +1,15 @@
|
|||
pkgs = cl-alexandria-git clark-git cl-babel cl-cffi cl-iterate \
|
||||
cl-sqlite cl-trivial-features cl-trivial-gray-streams \
|
||||
python2-dispass python2-dispass-git
|
||||
|
||||
.PHONY: all $(pkgs) $(install-pkgs)
|
||||
|
||||
all:
|
||||
|
||||
$(pkgs):
|
||||
cd "$@" && makepkg -sic --needed --noconfirm && cd "$(CURDIR)"
|
||||
|
||||
clark-git: cl-sqlite
|
||||
cl-babel: cl-trivial-gray-streams cl-alexandria-git cl-trivial-features
|
||||
cl-cffi: cl-babel cl-alexandria-git cl-trivial-features
|
||||
cl-sqlite: cl-iterate cl-cffi
|
Loading…
Reference in a new issue