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
68fea604
Unverified
Commit
68fea604
authored
5 years ago
by
Vagrant Cascadian
Committed by
Vagrant Cascadian
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add pngsuite.
* gnu/packages/image (pngsuite): New variable.
parent
37ecf2d9
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/image.scm
+34
-0
34 additions, 0 deletions
gnu/packages/image.scm
with
34 additions
and
0 deletions
gnu/packages/image.scm
+
34
−
0
View file @
68fea604
...
...
@@ -1462,6 +1462,40 @@ (define-public optipng
(
home-page
"http://optipng.sourceforge.net/"
)
(
license
license:zlib
)))
(
define-public
pngsuite
(
package
(
name
"pngsuite"
)
(
version
"2017jul19"
)
(
source
(
origin
(
method
url-fetch/tarbomb
)
(
uri
(
string-append
"http://www.schaik.com/pngsuite2011/PngSuite-"
version
".tgz"
))
(
sha256
(
base32
"1j7xgd9iffcnpphhzz9ld9ybrjmx9brhq0803g0450ssr52b5502"
))))
(
build-system
gnu-build-system
)
(
arguments
'
(
#
:tests?
#f
; there is no test target
#
:license-file-regexp
"PngSuite.LICENSE"
#
:phases
(
modify-phases
%standard-phases
(
replace
'install
(
lambda*
(
#
:key
outputs
#
:allow-other-keys
)
(
let
((
out
(
assoc-ref
outputs
"out"
)))
(
copy-recursively
"."
(
string-append
out
"/"
))
#t
)))
(
delete
'build
)
(
delete
'configure
))))
(
home-page
"http://www.schaik.com/pngsuite2011/pngsuite.html"
)
(
synopsis
"Example PNGs for use in test suites"
)
(
description
"Collection of graphics images created to test PNG
applications like viewers, converters and editors. As far as that is
possible, all formats supported by the PNG standard are represented."
)
(
license
(
license:fsdg-compatible
"file://PngSuite.LICENSE"
"Permission to
use, copy, modify and distribute these images for any purpose and without fee
is hereby granted."
))))
(
define-public
libjpeg-turbo
(
package
(
name
"libjpeg-turbo"
)
...
...
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