mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
21 lines
602 B
Ruby
21 lines
602 B
Ruby
require 'package'
|
|
|
|
class Libunistring < Package
|
|
description 'A library that provides functions for manipulating Unicode strings and for manipulating C strings according to the Unicode standard.'
|
|
homepage 'https://www.gnu.org/software/libunistring/'
|
|
version '0.9.7'
|
|
source_url 'http://ftp.gnu.org/gnu/libunistring/libunistring-0.9.7.tar.xz'
|
|
source_sha1 '7d92687a50fea7702e8052486dfa25ffc361c9f3'
|
|
|
|
depends_on "glibc"
|
|
|
|
def self.build
|
|
system "./configure --prefix=/usr/local"
|
|
system "make"
|
|
end
|
|
|
|
def self.install
|
|
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
|
end
|
|
end
|