Commit dbc3adab authored by Ed Reel's avatar Ed Reel Committed by GitHub

Add libcom_err package (#5886)

parent e406c0bc
......@@ -27,6 +27,7 @@ class Codium < Package
depends_on 'gdk_pixbuf'
depends_on 'glib'
depends_on 'gtk3'
depends_on 'libcom_err'
depends_on 'libdrm'
depends_on 'libx11'
depends_on 'libxcb'
......
require 'package'
class Libcom_err < Package
description 'Common error description library'
homepage 'http://e2fsprogs.sourceforge.net/'
version '1.0'
license 'GPL-2'
compatibility 'all'
source_url 'SKIP'
depends_on 'e2fsprogs'
def self.install
FileUtils.mkdir_p CREW_DEST_LIB_PREFIX
Dir.chdir CREW_DEST_LIB_PREFIX do
FileUtils.symlink "#{CREW_LIB_PREFIX}/libcom_err.so.2.1", 'libcom_err.so.3'
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