diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-05-06 21:37:01 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-05-06 21:37:01 -0400 |
commit | 2dace0c9f1d987d621045a37c20463d8aafdf050 (patch) | |
tree | ee7633cfbd542dcbd0fa32bb59522f6af8dfbd60 /Makefile | |
parent | db8b79e01b55c747c6747fbf4203309def2f46a9 (diff) |
Make parabolaweb-git not actually clone parabolaweb, but provide parabolaweb tools
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..55115ab --- /dev/null +++ b/Makefile @@ -0,0 +1,26 @@ +all: + makepkg + +python_packages=south +python2_packages=markdown|psycopg2|pyinotify|pytz +requirements= https://projects.parabolagnulinux.org/parabolaweb.git/plain/requirements_prod.txt + +requirements_prod.txt: WEB + rm -f $@ + wget --no-check-certificate $(requirements) + +deps-ver.txt: requirements_prod.txt + sed -r -e 's/.*/\L&/' -e 's/==/=/' \ + -e 's/^(${python_packages})/python-&/' \ + -e 's/^(${python2_packages})/python2-&/' $< >$@ + +deps-nover.txt: deps-ver.txt + sed 's/[<>=].*//' $< >$@ + +clean: + rm requirements_prod.txt deps-ver.txt deps-nover.txt + +WEB: FORCE +FORCE: PHONY +PHONY: +.PHONY: PHONY |