mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
Create libxinerama.rb (#1821)
* Create libxinerama.rb * Update libxinerama.rb
This commit is contained in:
23
packages/libxinerama.rb
Normal file
23
packages/libxinerama.rb
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
require 'package'
|
||||
|
||||
class Libxinerama < Package
|
||||
description 'Xorg library, Xinerama is an X11 extension which provides support for extending a desktop across multiple displays.'
|
||||
homepage 'https://www.x.org/'
|
||||
version '1.1.3'
|
||||
source_url 'https://www.x.org/archive//individual/lib/libXinerama-1.1.3.tar.gz'
|
||||
source_sha256 '0ba243222ae5aba4c6a3d7a394c32c8b69220a6872dbb00b7abae8753aca9a44'
|
||||
|
||||
depends_on 'fontconfig'
|
||||
depends_on 'libxcb'
|
||||
|
||||
def self.build
|
||||
system "./configure --prefix=#{CREW_PREFIX} --libdir=#{CREW_LIB_PREFIX}"
|
||||
system "make"
|
||||
end
|
||||
|
||||
def self.install
|
||||
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user