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
9f98e272
Commit
9f98e272
authored
May 09, 2017
by
lyxell
Committed by
GitHub
May 09, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #631 from jam7/no-static-lib
Change to not create static libraries for several packages
parents
aba08dfd
467fff75
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
18 deletions
+32
-18
packages/libffi.rb
packages/libffi.rb
+7
-5
packages/libpipeline.rb
packages/libpipeline.rb
+2
-2
packages/libtasn1.rb
packages/libtasn1.rb
+7
-3
packages/p11kit.rb
packages/p11kit.rb
+8
-2
packages/xzutils.rb
packages/xzutils.rb
+8
-6
No files found.
packages/libffi.rb
View file @
9f98e272
require
'package'
class
Libffi
<
Package
version
'3.2.1'
version
'3.2.1
-1
'
source_url
'ftp://sourceware.org/pub/libffi/libffi-3.2.1.tar.gz'
source_sha1
'280c265b789e041c02e5c97815793dfc283fb1e6'
depends_on
'autoconf'
depends_on
'automake'
def
self
.
build
system
"./configure"
,
"--disable-debug"
,
"--disable-dependency-tracking"
system
"./configure"
,
"--enable-shared"
,
"--disable-static"
,
"--with-pic"
,
"--disable-debug"
,
"--disable-dependency-tracking"
system
"make"
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
def
self
.
check
# system "make check" # DejaGNU required
end
end
packages/libpipeline.rb
View file @
9f98e272
require
'package'
class
Libpipeline
<
Package
version
'1.4.1'
version
'1.4.1
-1
'
source_url
'https://download.savannah.gnu.org/releases/libpipeline/libpipeline-1.4.1.tar.gz'
source_sha1
'b31cc955f22b1aa4545dc8d00ddbde831936594f'
def
self
.
build
system
'./configure'
system
'./configure'
,
'--disable-static'
,
'--enable-shared'
,
'--with-pic'
system
'make'
end
...
...
packages/libtasn1.rb
View file @
9f98e272
require
'package'
class
Libtasn1
<
Package
version
'4.10'
source_url
'http://ftp
.snt.utwente.nl/pub/software/gnu
/libtasn1/libtasn1-4.10.tar.gz'
version
'4.10
-1
'
source_url
'http://ftp
mirror.gnu.org
/libtasn1/libtasn1-4.10.tar.gz'
source_sha1
'c7b36fa50866bbc889f7503c7fd1e9f9d7c52a64'
def
self
.
build
system
'./configure --prefix=/usr/local'
system
"./configure"
,
"--enable-shared"
,
"--disable-static"
,
"--with-pic"
,
"--prefix=/usr/local"
system
"make"
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
def
self
.
check
system
"make"
,
"check"
end
end
packages/p11kit.rb
View file @
9f98e272
require
'package'
class
P11kit
<
Package
version
'0.23.2'
version
'0.23.2
-1
'
source_url
'https://p11-glue.freedesktop.org/releases/p11-kit-0.23.2.tar.gz'
source_sha1
'4da0d7b47935b6cb0f321dd00358b063ae42df71'
...
...
@@ -9,11 +9,17 @@ class P11kit < Package
depends_on
'libtasn1'
def
self
.
build
system
'./configure --prefix=/usr/local'
system
"./configure"
,
"--enable-shared"
,
"--disable-static"
,
"--with-pic"
,
"--prefix=/usr/local"
system
"make"
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
def
self
.
check
# Doesn't perform tests since 2 out of 45 fail as
# reported in https://bugs.freedesktop.org/show_bug.cgi?id=95366
# system "make", "check"
end
end
packages/xzutils.rb
View file @
9f98e272
require
'package'
class
Xzutils
<
Package
version
'5.2.3
'
source_url
'http://tukaani.org/xz/xz-5.2.3.tar.gz'
source_sha1
'529638eec3597e429cc54c74551ac0a89169e841'
version
'5.2.3
-1'
source_url
'http://tukaani.org/xz/xz-5.2.3.tar.gz'
source_sha1
'529638eec3597e429cc54c74551ac0a89169e841'
def
self
.
build
system
"./configure"
,
"--prefix=/usr/local"
,
"--disable-docs"
system
"./configure"
,
"--prefix=/usr/local"
,
"--disable-docs"
,
"--enable-shared"
,
"--disable-static"
,
"--with-pic"
system
"make"
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
def
self
.
check
system
"make"
,
"check"
end
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