cabal install from local git-annex cabal file
This commit is contained in:
parent
e86cbcd631
commit
5e8bac96f1
1 changed files with 5 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
# Bootstraps from an empty cabal to all the necessary haskell packages
|
# Bootstraps from an empty cabal to all the necessary haskell packages
|
||||||
# being installed, with the necessary patches to work on Android.
|
# being installed, with the necessary patches to work on Android.
|
||||||
#
|
#
|
||||||
|
@ -46,8 +46,10 @@ patched () {
|
||||||
}
|
}
|
||||||
|
|
||||||
installgitannexdeps () {
|
installgitannexdeps () {
|
||||||
echo cabal install git-annex --only-dependencies
|
pushd ../..
|
||||||
cabal install git-annex --only-dependencies "$@"
|
echo cabal install --only-dependencies
|
||||||
|
cabal install --only-dependencies "$@"
|
||||||
|
popd
|
||||||
}
|
}
|
||||||
|
|
||||||
install_pkgs () {
|
install_pkgs () {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue