Add libxkbfile

This commit is contained in:
Jan Baudisch
2017-07-26 01:03:09 -07:00
committed by Kazushi (Jam) Marukawa
parent 24c7c614fd
commit 17245bd036

18
packages/libxkbfile.rb Normal file
View File

@@ -0,0 +1,18 @@
require 'package'
class Libxkbfile < Package
description 'library for the X window system'
homepage 'https://x.org'
version '1.0.9'
source_url 'https://www.x.org/archive/individual/lib/libxkbfile-1.0.9.tar.gz'
source_sha256 '95df50570f38e720fb79976f603761ae6eff761613eb56f258c3cb6bab4fd5e3'
def self.build
system "./configure"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end