From 6720ac28a940ee4cf8ecb556e2e428f63a7ae3fa Mon Sep 17 00:00:00 2001 From: Daniel Liu Date: Sun, 2 May 2021 16:52:55 -0400 Subject: [PATCH] deb pkg --- README.md | 19 ++++++++++++++++++- makefile | 10 +++++++--- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ba62947..4f6f62a 100644 --- a/README.md +++ b/README.md @@ -3,15 +3,32 @@ ekitai.hs is a terminal fluid simulator written in haskell. it is a submission to RUHacks 2021. the simulation algorithm is quite simple, it's a similar particle based one that games like 'the sandbox' and 'terraria' use. ## Usage -ekitai reads a text file with the desired simulation. samples can be found in the samples/ directory of this repo. valid characters for the simulation are as follows +ekitai reads a text file with the desired simulation. samples can be found in the samples/ directory of this repo or at /usr/share/ekitai/samples. valid characters for the simulation are as follows - `#`: wall block - `~`: water - `@`: pump, spawns water below it - `O`: drain, removes water around it +you can also consult the man page with `man ekitai`. + ## Installation ### Deb based +you can get the deb file from my site, the installation process is as follows +``` +wget https://files.danieliu.xyz/repos/debian/ekitai.hs/ekitai.hs_1.0-1.deb +sudo dpkg -i ekitai.hs_1.0-1.deb +sudo apt-get install -f +``` + ### Arch based +simply get the pkgbuild from my site +``` +mkdir ekitai.hs-git +cd ekitai.hs-git +wget https://files.danieliu.xyz/repos/arch/ekitai.hs/PKGBUILD +makepkg -si +``` + ### Build from Source as this project does not use stack or cabal or anything, haskell dependencies will have to be installed separately. this is a bit difficult to document since the packages varies by distro, for arch at least, the following are required - ghc diff --git a/makefile b/makefile index 935a541..7adebc7 100644 --- a/makefile +++ b/makefile @@ -2,9 +2,10 @@ HC=ghc DHC=ghci HFLAGS=-dynamic -threaded PREFIX=/usr +SAMPLEPREFIX=$(PREFIX)/share MANPREFIX=$(PREFIX)/share/man -.PHONY: ekitai clean test +.PHONY: ekitai clean test install uninstall ekitai: Ekitai.hs $(HC) $(HFLAGS) --make $< && \ @@ -22,8 +23,11 @@ install: ekitai chmod 775 $(DESTDIR)$(PREFIX)/bin/ekitai mkdir -p $(DESTDIR)$(MANPREFIX)/man1 cp -f ekitai.1 $(DESTDIR)$(MANPREFIX)/man1 + mkdir -p $(DESTDIR)$(SAMPLEPREFIX)/ekitai + cp -r samples $(DESTDIR)$(SAMPLEPREFIX)/ekitai uninstall: - rm -f $(DESTDIR)$(PREFIX)/bin/ekitai \ - $(DESTDIR)$(MANPREFIX)/man1/ekitai.1 + rm -rf $(DESTDIR)$(PREFIX)/bin/ekitai \ + $(DESTDIR)$(MANPREFIX)/man1/ekitai.1 \ + $(DESTDIR)$(SAMPLEPREFIX)/ekitai -- 2.20.1