Commit bdfb1fb5 authored by Robert Sigler's avatar Robert Sigler

Updated packages as per PR 1723 comments

parent 909b9a32
...@@ -12,8 +12,6 @@ class Bacon < Package ...@@ -12,8 +12,6 @@ class Bacon < Package
binary_sha256 ({ binary_sha256 ({
}) })
depends_on 'buildessential'
def self.build def self.build
system 'sed -i "s,/usr/share,\$\(DATADIR\)," Makefile.in' system 'sed -i "s,/usr/share,\$\(DATADIR\)," Makefile.in'
system './configure', system './configure',
......
...@@ -12,6 +12,11 @@ class Bdwgc < Package ...@@ -12,6 +12,11 @@ class Bdwgc < Package
binary_sha256 ({ binary_sha256 ({
}) })
depends_on 'autoconf' => :build
depends_on 'automake' => :build
depends_on 'libtool' => :build
depends_on 'pkgconfig' => :build
depends_on 'libatomic_ops' depends_on 'libatomic_ops'
def self.build def self.build
......
...@@ -12,9 +12,14 @@ class Libatomic_ops < Package ...@@ -12,9 +12,14 @@ class Libatomic_ops < Package
binary_sha256 ({ binary_sha256 ({
}) })
depends_on 'autoconf' => :build
depends_on 'automake' => :build
depends_on 'libtool' => :build
depends_on 'pkgconfig' => :build
def self.build def self.build
system "./autogen.sh" system "./autogen.sh"
system "./configure" system "./configure --prefix=#{CREW_PREFIX} --libdir=#{CREW_LIB_PREFIX}"
system "make" system "make"
end 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