Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
chromebrew
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
chromebrew
Commits
3044356b
Commit
3044356b
authored
Apr 17, 2020
by
Ed Reel
Committed by
GitHub
Apr 17, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert ghostscript package to restore on arm (#4023)
parent
4e70539e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
16 deletions
+17
-16
packages/ghostscript.rb
packages/ghostscript.rb
+17
-16
No files found.
packages/ghostscript.rb
View file @
3044356b
...
...
@@ -2,21 +2,22 @@ require 'package'
class
Ghostscript
<
Package
description
'Ghostscript is the name of a set of software that provides an interpreter for the PostScript language and the PDF file format.'
homepage
'https://www.ghostscript.com/'
version
'9.52'
case
ARCH
when
'i686'
,
'x86_64'
source_url
'https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs952/ghostscript-9.52.tar.xz'
source_sha256
'57442acf8b46453a9b5fc6fec738fbbb7e13a3d3e00f1aaaa0975529bc203c7c'
end
homepage
'https://www.gnu.org/software/ghostscript/'
version
'9.14.1-1'
source_url
'https://ftpmirror.gnu.org/ghostscript/gnu-ghostscript-9.14.1.tar.xz'
source_sha256
'424a4ff333a594fdd397cd8adc4249bad7d74a6ae653f840dee72b27f1bf1da0'
binary_url
({
i686:
'https://dl.bintray.com/chromebrew/chromebrew/ghostscript-9.52-chromeos-i686.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/ghostscript-9.52-chromeos-x86_64.tar.xz'
,
aarch64:
'https://dl.bintray.com/chromebrew/chromebrew/ghostscript-9.14.1-1-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.bintray.com/chromebrew/chromebrew/ghostscript-9.14.1-1-chromeos-armv7l.tar.xz'
,
i686:
'https://dl.bintray.com/chromebrew/chromebrew/ghostscript-9.14.1-1-chromeos-i686.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/ghostscript-9.14.1-1-chromeos-x86_64.tar.xz'
,
})
binary_sha256
({
i686:
'e03c125fcc7a4a0bbc9e73cc96b2c9f32f7e20e5791e68f8a81cae6d667da789'
,
x86_64:
'df1b614750f332fb8d759fe5b9c5c231193d745abc0c47db493470fa7d40e459'
,
aarch64:
'eb8e98fe8b0eb70ce20c56878e962d690f25703326cdca60865ed05e5444cd3f'
,
armv7l:
'eb8e98fe8b0eb70ce20c56878e962d690f25703326cdca60865ed05e5444cd3f'
,
i686:
'31827f5362971f99ba3aa5aa6f4fdc3a4ca4368bf72a499538fdf7f98fff3d41'
,
x86_64:
'23325d5f8c5cbb538a366313d68da5a35677ddf963ecfdfe8a40d0617c55b2bc'
,
})
depends_on
'cups'
...
...
@@ -26,14 +27,14 @@ class Ghostscript < Package
depends_on
'libtiff'
def
self
.
build
system
"./configure
#{
CREW_OPTIONS
}
--with-drivers=ALL"
system
'./configure'
,
"--prefix=
#{
CREW_PREFIX
}
"
,
"--libdir=
#{
CREW_LIB_PREFIX
}
"
,
'--disable-dependency-tracking'
,
'--disable-static'
system
'make'
end
def
self
.
check
system
'make'
,
'check'
end
def
self
.
install
system
'make'
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
'install'
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment