packages feed

archlinux-0.3.1: archlinux.cabal

name:           archlinux
version:        0.3.1
license:        BSD3
license-file:   LICENSE
author:         Don Stewart <dons@galois.com>
maintainer:     Don Stewart <dons@galois.com>
homepage:       http://code.haskell.org/~dons/code/archlinux
category:       Distribution
synopsis:       Support for working with Arch Linux packages
description:    Support for working with Arch Linux packages
                .
                To get info about a package:
                .
                > info "xmonad"
                .
                To find packages matching a string:
                .
                > search "xmonad"
                .
                To find packages owned by a maintainer:
                .
                > maintainer "arch-haskell"
                . 
                Generate an html page of interesting facts about 
                packages in AUR and Hackage.
                .
                > report ["xmonad"]
                .
                See also the cabal2arch tool <http://hackage.haskell.org/package/cabal2arch>
                for conversion between Hackage and AUR.

build-type:     Simple
stability:      experimental
cabal-version:  >= 1.2.3

library
    build-depends:  base >= 4 && < 6,
                    HTTP,
                    Cabal >= 1.6,
                    json,
                    pretty,
                    prettyclass,
                    containers,
                    filepath,
                    xhtml,
                    process,
                    directory,
                    parallel,
                    deepseq,
                    strict-concurrency,
                    old-time,
                    csv

    exposed-modules:
        Distribution.ArchLinux.AUR
        Distribution.ArchLinux.PkgBuild
        Distribution.ArchLinux.Report