mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
18 lines
532 B
Ruby
18 lines
532 B
Ruby
require 'package'
|
|
|
|
class Damageproto < Package
|
|
description 'The protocols for the X window system provide extended functionality for communication between a X client and the server.'
|
|
homepage 'https://x.org'
|
|
version '1.2.1'
|
|
source_url 'https://www.x.org/archive/individual/proto/damageproto-1.2.1.tar.gz'
|
|
source_sha256 'f65ccbf1de9750a527ea6e85694085b179f2d06495cbdb742b3edb2149fef303'
|
|
|
|
def self.build
|
|
system "./configure"
|
|
end
|
|
|
|
def self.install
|
|
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
|
end
|
|
end
|