tvl-depot/Makefile
Vincent Ambo 3a86d653ce
.dockerignore, make clean and new PKGBUILD
- Added .dockerignore file
- added make target for cleaning up
- modified PKGBUILD to build in symlink to checkout (yeah this isn't
  really how you build Arch packages but that's besides the point! :))
2014-08-22 18:56:57 +02:00

17 lines
397 B
Makefile

VERSION=$(shell bash -c "grep -P -o -e '\d\.\d$$' TazBlog.cabal | head -n1")
ARCH_PKG=arch/tazblog-$(VERSION)-1-x86_64.pkg.tar.xz
export ARCH_PKG
all: archpkg docker
archpkg: $(ARCH_PKG)
$(ARCH_PKG):
cd arch && makepkg
docker: archpkg
cat Dockerfile.raw | envsubst > Dockerfile; \
docker build -t tazjin/tazblog .
clean:
rm -rf dist arch/*.pkg.tar.xz arch/pkg arch/src arch/*. Dockerfile