Commit aaa4d7f9 authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #421 from cstrouse/fix-di-meta

[di] Fix missing package meta
parents c0d3bc13 b6ee7a1a
......@@ -6,6 +6,11 @@ class Di < Package
source_sha1 'ddced0d59d29ccdcbc4282bc7464a925d14955e1'
def self.build
system "sed -i '40s,= ,= $(DESTDIR)/,' Makefile" # set correct bin path
system "sed -i '44s,= ,= $(DESTDIR)/,' Makefile" # add destdir to man path
system "sed -i '61s,share/,,' Makefile" # remove share segment
system "sed -i '52s/root/chronos/' Makefile" # set correct owner
system "sed -i '53s/bin/chronos/' Makefile" # set correct group
system "CC=gcc prefix=/usr/local make -e"
system "make"
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment