mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
15 lines
354 B
Ruby
15 lines
354 B
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/util_linux.rb")
|
|
|
|
class Libuuid < Package
|
|
description 'Portable UUID C library. Bundled with util_linux.'
|
|
homepage 'https://sourceforge.net/projects/libuuid/'
|
|
version Util_linux.version
|
|
license Util_linux.license
|
|
compatibility Util_linux.compatibility
|
|
|
|
is_fake
|
|
|
|
depends_on 'util_linux'
|
|
end
|