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
313b9012
Commit
313b9012
authored
12 years ago
by
Andreas Enge
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add t1lib.
* gnu/packages/freetype.scm (t1lib): New variable.
parent
d192efae
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/freetype.scm
+30
-1
30 additions, 1 deletion
gnu/packages/freetype.scm
with
30 additions
and
1 deletion
gnu/packages/freetype.scm
+
30
−
1
View file @
313b9012
...
...
@@ -62,7 +62,7 @@ (define-public fontconfig
(
inputs
`
((
"expat"
,
expat
)
(
"freetype"
,
freetype
)
(
"pkg-config"
,
pkg-config
)))
(
synopsis
"Fontconfig, a library for configuring and customising font access.
"
)
(
synopsis
"Fontconfig, a library for configuring and customising font access."
)
(
description
"Fontconfig can discover new fonts when installed automatically;
perform font name substitution, so that appropriate alternative fonts can
...
...
@@ -76,3 +76,32 @@ (define-public fontconfig
(
license
(
license:bsd-style
"file://COPYING"
"See COPYING in the distribution."
))
(
home-page
"http://www.freedesktop.org/wiki/Software/fontconfig"
)))
(
define-public
t1lib
(
package
(
name
"t1lib"
)
(
version
"5.1.2"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
"ftp://sunsite.unc.edu/pub/Linux/libs/graphics/t1lib-5.1.2.tar.gz"
)
(
sha256
(
base32
"0nbvjpnmcznib1nlgg8xckrmsw3haa154byds2h90y2g0nsjh4w2"
))))
(
build-system
gnu-build-system
)
(
arguments
;; Making the documentation requires latex, but t1lib is also an input
;; for building texlive.
`
(
#
:tests?
#f
; no test target
#
:make-flags
'
(
"without_doc"
)))
(
synopsis
"T1lib, a library for generating bitmaps from type 1 fonts."
)
(
description
"T1lib is a library for generating/rasterising bitmaps from Type 1 fonts.
It is based on the code of the X11 rasteriser of the X11 project.
The bitmaps created by t1lib are returned in a data structure with type
GLYPH. This special GLYPH-type is also used in the X11 window system to
describe character bitmaps. It contains the bitmap data as well as some
metric information. But t1lib is in itself entirely independent of the
X11-system or any other graphical user interface. "
)
(
license
license:gpl2
)
(
home-page
"http://www.t1lib.org/"
)))
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