Commit 7820299e authored by Ed Reel's avatar Ed Reel Committed by Chris Thurber

Update libuuid from 1.0.3 to 1.3.0 (#3658)

Change to a fake package to prevent a collision with util_linux
which already has libuuid
parent d1f7c170
require 'package'
class Libuuid < Package
description "Portable UUID C library"
homepage "https://sourceforge.net/projects/libuuid/"
version '1.0.3'
source_url "https://downloads.sourceforge.net/project/libuuid/libuuid-1.0.3.tar.gz"
source_sha256 "46af3275291091009ad7f1b899de3d0cea0252737550e7919d17237997db5644"
description 'Portable UUID C library'
homepage 'https://sourceforge.net/projects/libuuid/'
version '1.3.0'
def self.build
system './configure',
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}"
system 'make'
end
is_fake
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
def self.check
system 'make', 'check'
end
depends_on 'util_linux'
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment