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