mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 23:48:01 -05:00
Add libxkbfile
This commit is contained in:
committed by
Kazushi (Jam) Marukawa
parent
24c7c614fd
commit
17245bd036
18
packages/libxkbfile.rb
Normal file
18
packages/libxkbfile.rb
Normal 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
|
||||
Reference in New Issue
Block a user