deps
This commit is contained in:
parent
21b3ed2801
commit
df9791ee26
2
Makefile
2
Makefile
|
@ -10,7 +10,7 @@ build: dist/setup-config
|
||||||
ln -sf dist/build/config/config propellor
|
ln -sf dist/build/config/config propellor
|
||||||
|
|
||||||
deps:
|
deps:
|
||||||
@if [ $$(whoami) = root ]; then apt-get --no-upgrade --no-install-recommends -y install gnupg ghc cabal-install libghc-missingh-dev libghc-ansi-terminal-dev libghc-ifelse-dev libghc-unix-compat-dev libghc-hslogger-dev libghc-network-dev libghc-quickcheck2-dev; fi || true
|
@if [ $$(whoami) = root ]; then apt-get --no-upgrade --no-install-recommends -y install gnupg ghc cabal-install libghc-missingh-dev libghc-ansi-terminal-dev libghc-ifelse-dev libghc-unix-compat-dev libghc-hslogger-dev libghc-network-dev libghc-quickcheck2-dev libghc-mtl-dev libghc-monadcatchio-transformers-dev; fi || true
|
||||||
@if [ $$(whoami) = root ]; then apt-get --no-upgrade --no-install-recommends -y install libghc-async-dev || cabal update; cabal install async; fi || true
|
@if [ $$(whoami) = root ]; then apt-get --no-upgrade --no-install-recommends -y install libghc-async-dev || cabal update; cabal install async; fi || true
|
||||||
|
|
||||||
dist/setup-config: propellor.cabal
|
dist/setup-config: propellor.cabal
|
||||||
|
|
|
@ -11,6 +11,8 @@ Build-Depends:
|
||||||
libghc-unix-compat-dev,
|
libghc-unix-compat-dev,
|
||||||
libghc-ansi-terminal-dev,
|
libghc-ansi-terminal-dev,
|
||||||
libghc-ifelse-dev,
|
libghc-ifelse-dev,
|
||||||
|
libghc-mtl-dev,
|
||||||
|
libghc-monadcatchio-transformers-dev,
|
||||||
Maintainer: Joey Hess <joeyh@debian.org>
|
Maintainer: Joey Hess <joeyh@debian.org>
|
||||||
Standards-Version: 3.9.5
|
Standards-Version: 3.9.5
|
||||||
Vcs-Git: git://git.kitenet.net/propellor
|
Vcs-Git: git://git.kitenet.net/propellor
|
||||||
|
@ -28,6 +30,8 @@ Depends: ${misc:Depends}, ${shlibs:Depends},
|
||||||
libghc-unix-compat-dev,
|
libghc-unix-compat-dev,
|
||||||
libghc-ansi-terminal-dev,
|
libghc-ansi-terminal-dev,
|
||||||
libghc-ifelse-dev,
|
libghc-ifelse-dev,
|
||||||
|
libghc-mtl-dev,
|
||||||
|
libghc-monadcatchio-transformers-dev,
|
||||||
git,
|
git,
|
||||||
Description: property-based host configuration management in haskell
|
Description: property-based host configuration management in haskell
|
||||||
Propellor enures that the system it's run in satisfies a list of
|
Propellor enures that the system it's run in satisfies a list of
|
||||||
|
|
Loading…
Reference in New Issue