mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
14 lines
265 B
Ruby
14 lines
265 B
Ruby
require 'package'
|
|
|
|
class Libuuid < Package
|
|
description 'Portable UUID C library'
|
|
homepage 'https://sourceforge.net/projects/libuuid/'
|
|
version '1.3.0'
|
|
license 'BSD' # The actual libuuid library
|
|
compatibility 'all'
|
|
|
|
is_fake
|
|
|
|
depends_on 'util_linux'
|
|
end
|