Commit 6e2b6ce5 authored by Gangstead's avatar Gangstead Committed by GitHub

Merge pull request #1524 from uberhacker/add-libuuid-package

Add libuuid package
parents 9ec6e200 7fb20758
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'
binary_url ({
})
binary_sha256 ({
})
def self.build
system './configure',
"--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}",
'--disable-dependency-tracking'
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
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