Search Criteria
Package Details: pp-git r174.7e2866f-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/pp-git.git (read-only, click to copy) |
---|---|
Package Base: | pp-git |
Description: | PP is a text preprocessor designed for Pandoc (and more generally Markdown and reStructuredText). |
Upstream URL: | http://cdsoft.fr/pp |
Licenses: | GPL |
Conflicts: | pp |
Provides: | pp |
Submitter: | HaoZeke |
Maintainer: | HaoZeke |
Last Packager: | HaoZeke |
Votes: | 1 |
Popularity: | 0.000000 |
First Submitted: | 2018-07-22 12:37 (UTC) |
Last Updated: | 2019-09-12 01:46 (UTC) |
Dependencies (11)
- gmp (gmp-hgAUR)
- git (git-gitAUR, git-glAUR) (make)
- haskell-connection (make)
- haskell-http-client-tls (make)
- haskell-socks (make)
- haskell-tls (make)
- haskell-yaml (make)
- stack (stack-staticAUR, stack-binAUR) (make)
- asymptote (asymptote-gitAUR) (optional) – For vector graphics support
- graphviz (optional) – For dot support
- r (r352AUR, r-mklAUR) (optional) – For r rendering
Latest Comments
dreieck commented on 2020-03-15 19:26 (UTC) (edited on 2020-03-15 19:26 (UTC) by dreieck)
This package has a big problem:
The
PKGBUILD
downloads a big amount of stuff inbuild()
:This must not happen!
build()
, as well aspackage()
andcheck()
, must not assume internet connection.For a clean user experience and build process, please make sure that everything which is needed gets downloaded via the
source
-array (this way, also download settings inmakepkg.conf
can be honoured). If needed, add some extra code that buildssource
during runtime.Only if this is not possible you can also use
prepare()
as an exception, to download stuff.But after
prepare()
, everything needed to build the package has to be on disk.Please fix that.
Thanks for maintaining (-:!