Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
inf
Guix
Commits
87ec7a7a
Commit
87ec7a7a
authored
12 years ago
by
Andreas Enge
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add psutils.
* gnu/packages/ghostscript.scm (psutils): New variable.
parent
05bf6f82
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/ghostscript.scm
+42
-0
42 additions, 0 deletions
gnu/packages/ghostscript.scm
with
42 additions
and
0 deletions
gnu/packages/ghostscript.scm
+
42
−
0
View file @
87ec7a7a
...
...
@@ -75,6 +75,48 @@ (define-public libpaper
(
license
license:gpl2
)
(
home-page
"http://packages.qa.debian.org/libp/libpaper.html"
)))
(
define-public
psutils
(
package
(
name
"psutils"
)
(
version
"17"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
"ftp://ftp.knackered.org/pub/psutils/psutils.tar.gz"
)
(
sha256
(
base32
"1r4ab1fvgganm02kmm70b2r1azwzbav2am41gbigpa2bb1wynlrq"
))))
(
build-system
gnu-build-system
)
(
inputs
`
((
"perl"
,
perl
)))
(
arguments
`
(
#
:tests?
#f
; none provided
#
:phases
(
alist-replace
'configure
(
lambda*
(
#
:key
inputs
outputs
#
:allow-other-keys
#
:rest
args
)
(
let
((
perl
(
assoc-ref
inputs
"perl"
))
(
out
(
assoc-ref
outputs
"out"
)))
(
copy-file
"Makefile.unix"
"Makefile"
)
(
substitute*
"Makefile"
((
"/usr/local/bin/perl"
)
(
string-append
perl
"/bin/perl"
)))
(
substitute*
"Makefile"
((
"/usr/local"
)
out
))
;; for the install phase
(
substitute*
"Makefile"
((
"-mkdir"
)
"mkdir -p"
))
;; drop installation of non-free files
(
substitute*
"Makefile"
((
" install.include"
)
""
))))
%standard-phases
)))
(
synopsis
"psutils, a collection of utilities for manipulating PostScript documents"
)
(
description
"PSUtils is a collection of utilities for manipulating PostScript
documents. Programs included are psnup, for placing out several logical pages
on a single sheet of paper, psselect, for selecting pages from a document,
pstops, for general imposition, psbook, for signature generation for booklet
printing, and psresize, for adjusting page sizes."
)
(
license
(
license:bsd-style
"file://LICENSE"
"See LICENSE in the distribution."
))
(
home-page
"http://knackered.org/angus/psutils/"
)))
(
define-public
ghostscript
(
package
(
name
"ghostscript"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment