Add libuninum package

This commit is contained in:
Ed Reel
2017-08-23 23:27:07 -05:00
committed by Kazushi (Jam) Marukawa
parent abcb6edeb7
commit fdf8a588c2

18
packages/libuninum.rb Normal file
View 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