Commit 9b5248e9 authored by lovedheart's avatar lovedheart Committed by GitHub

Update gdk_pixbuf.rb

Fix installation error
parent 6f1064b7
......@@ -11,6 +11,7 @@ class Gdk_pixbuf < Package
depends_on 'gobject_introspection'
depends_on 'libtiff'
depends_on 'libjpeg'
depends_on 'python27'
def self.build
system "./configure --prefix=#{CREW_PREFIX} --libdir=#{CREW_LIB_PREFIX}"
......@@ -18,6 +19,8 @@ class Gdk_pixbuf < Package
end
def self.install
system "pip install six" # for installation process
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
system "pip uninstall --yes six"
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