Commit 1916cb75 authored by Jan Baudisch's avatar Jan Baudisch Committed by GitHub

Update libepoxy prefix and python dependency

parent 01afce21
......@@ -8,18 +8,19 @@ class Libepoxy < Package
source_sha256 '0b808a06c9685a62fca34b680abb8bc7fb2fda074478e329b063c1f872b826f6'
depends_on 'mesa'
depends_on 'python3'
def self.build
system "mkdir _build"
Dir.chdir "_build" do
system "../configure --prefix=#{CREW_PREFIX}"
system "../configure --prefix=#{CREW_PREFIX} --libdir=#{CREW_LIB_PREFIX}"
system "make"
end
end
def self.install
Dir.chdir "_build" do
system "make install"
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
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