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
ef7b481f
Commit
ef7b481f
authored
May 27, 2017
by
Ed Reel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix mlocate package permission issue #669
parent
7c421258
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
packages/mlocate.rb
packages/mlocate.rb
+10
-8
No files found.
packages/mlocate.rb
View file @
ef7b481f
require
'package'
class
Mlocate
<
Package
version
'0.26
-1
'
version
'0.26'
source_url
'https://releases.pagure.org/mlocate/mlocate-0.26.tar.xz'
# software source tarball url
source_sha1
'c6e6d81b25359c51c545f4b8ba0f3b469227fcbc'
# source tarball sha1 sum
def
self
.
build
# self.build contains commands needed to build the software from source
system
"sed -i 's/groupname = mlocate/groupname = chronos/g' Makefile.*"
# change groupname in all Makefiles
system
"mkdir -p /usr/local/opt/mlocate"
# create dbdir directory where mlocate.db will be generated
system
"sed -i 's,
\$
(localstatedir)/,/usr/local/opt/,g' Makefile.*"
# change from /var (symlinked from /usr/local/var) to /usr/local/opt
system
"sed -i 's,groupname = mlocate,groupname = chronos,g' Makefile.*"
# change groupname in all Makefiles to avoid permission issues
system
"./configure"
system
"make"
# ordered chronologically
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