Add libxtrans

This commit is contained in:
Jan Baudisch
2017-07-20 23:04:41 -06:00
committed by Kazushi (Jam) Marukawa
parent f18c18d67d
commit 1250149564

18
packages/libxtrans.rb Normal file
View File

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