pkg-deps.sh: drop hedgewars and kaya, and add warning for missing bin packages

epel9
Jens Petersen 15 years ago
parent 9d63a496e3
commit 6453beb234

@ -13,9 +13,9 @@ cd .pkg-deps
ghc-pkg dot --global | sed '$d' > pkgs.dot ghc-pkg dot --global | sed '$d' > pkgs.dot
# check for binary deps too # check for binary deps too
for i in alex cabal-install cpphs darcs ghc happy gtk2hs-buildtools haskell-platform hedgewars hscolour kaya xmobar xmonad; do for i in alex cabal-install cpphs darcs ghc happy gtk2hs-buildtools haskell-platform hscolour xmobar xmonad; do
PKG_THERE=yes PKG_THERE=yes
PKG=`rpm -q --qf "%{name}-%{version}" $i` || PKG_THERE=no PKG=`rpm -q --qf "%{name}-%{version}" $i` || { PKG_THERE=no ; echo "missing $i" ; }
if [ "$PKG_THERE" = "yes" ]; then if [ "$PKG_THERE" = "yes" ]; then
echo \"$PKG\" >> pkgs.dot echo \"$PKG\" >> pkgs.dot
case $i in case $i in

Loading…
Cancel
Save