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
e4efa328
Commit
e4efa328
authored
Dec 20, 2016
by
lyxell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing DESTDIR
parent
9bae3b8c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
10 deletions
+10
-10
packages/gdbm.rb
packages/gdbm.rb
+1
-1
packages/groff.rb
packages/groff.rb
+1
-1
packages/libpipeline.rb
packages/libpipeline.rb
+1
-1
packages/mandb.rb
packages/mandb.rb
+7
-7
No files found.
packages/gdbm.rb
View file @
e4efa328
...
@@ -11,6 +11,6 @@ class Gdbm < Package
...
@@ -11,6 +11,6 @@ class Gdbm < Package
end
end
def
self
.
install
def
self
.
install
system
'make'
,
'install'
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
end
end
end
packages/groff.rb
View file @
e4efa328
...
@@ -11,6 +11,6 @@ class Groff < Package
...
@@ -11,6 +11,6 @@ class Groff < Package
end
end
def
self
.
install
def
self
.
install
system
'make'
,
'install'
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
end
end
end
packages/libpipeline.rb
View file @
e4efa328
...
@@ -11,6 +11,6 @@ class Libpipeline < Package
...
@@ -11,6 +11,6 @@ class Libpipeline < Package
end
end
def
self
.
install
def
self
.
install
system
'make install'
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
end
end
end
packages/mandb.rb
View file @
e4efa328
...
@@ -5,6 +5,12 @@ class Mandb < Package
...
@@ -5,6 +5,12 @@ class Mandb < Package
source_url
'https://download.savannah.gnu.org/releases/man-db/man-db-2.7.6.tar.xz'
source_url
'https://download.savannah.gnu.org/releases/man-db/man-db-2.7.6.tar.xz'
source_sha1
'35a10f80d5cf6411d5c73376fcddcec1539e788a'
source_sha1
'35a10f80d5cf6411d5c73376fcddcec1539e788a'
depends_on
'libpipeline'
depends_on
'pkgconfig'
depends_on
'gdbm'
depends_on
'groff'
depends_on
'less'
def
self
.
build
def
self
.
build
system
'./configure'
,
system
'./configure'
,
'--with-systemdtmpfilesdir=/usr/local/lib/tmpfiles.d'
,
# we can't write to /usr/lib/tmpfiles.d
'--with-systemdtmpfilesdir=/usr/local/lib/tmpfiles.d'
,
# we can't write to /usr/lib/tmpfiles.d
...
@@ -14,16 +20,10 @@ class Mandb < Package
...
@@ -14,16 +20,10 @@ class Mandb < Package
end
end
def
self
.
install
def
self
.
install
system
'make'
,
'install'
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
puts
""
puts
""
puts
"You will have to change the default PAGER env variable to be able to use mandb:"
puts
"You will have to change the default PAGER env variable to be able to use mandb:"
puts
"echo
\"
export PAGER=/usr/local/bin/less
\"
>> ~/.bashrc && . ~/.bashrc"
puts
"echo
\"
export PAGER=/usr/local/bin/less
\"
>> ~/.bashrc && . ~/.bashrc"
end
end
depends_on
'libpipeline'
depends_on
'pkgconfig'
depends_on
'gdbm'
depends_on
'groff'
depends_on
'less'
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