mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 23:48:01 -05:00
Add libuninum package
This commit is contained in:
committed by
Kazushi (Jam) Marukawa
parent
abcb6edeb7
commit
fdf8a588c2
18
packages/libuninum.rb
Normal file
18
packages/libuninum.rb
Normal file
@@ -0,0 +1,18 @@
|
||||
require 'package'
|
||||
|
||||
class Libuninum < Package
|
||||
description 'This is a library for converting Unicode strings to numbers and numbers to Unicode strings.'
|
||||
homepage 'http://billposer.org/Software/libuninum.html'
|
||||
version '2.7'
|
||||
source_url 'http://billposer.org/Software/Downloads/libuninum-2.7.tar.bz2'
|
||||
source_sha256 'e704983c3c00e9b76bd836b8b83ce31bfe4eb1752eee8be123cf97c1275076ea'
|
||||
|
||||
def self.build
|
||||
system './configure'
|
||||
system 'make'
|
||||
end
|
||||
|
||||
def self.install
|
||||
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user