2016-12-20 09:30:44 -05:00
|
|
|
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
2007-04-22 13:17:42 +00:00
|
|
|
|
2018-07-28 11:02:03 -05:00
|
|
|
PortSystem 1.0
|
2016-12-20 09:43:57 -05:00
|
|
|
PortGroup github 1.0
|
2023-10-15 17:32:00 -04:00
|
|
|
PortGroup makefile 1.0
|
2007-04-22 13:17:42 +00:00
|
|
|
|
2026-01-19 16:58:12 +02:00
|
|
|
github.setup JuliaStrings utf8proc 2.11.3 v
|
2025-02-09 12:58:47 +00:00
|
|
|
github.tarball_from archive
|
2023-12-11 22:43:19 +08:00
|
|
|
revision 0
|
2016-12-20 09:30:44 -05:00
|
|
|
name libutf8proc
|
|
|
|
|
categories textproc
|
2016-12-20 09:43:57 -05:00
|
|
|
license MIT
|
2023-02-27 13:28:28 +02:00
|
|
|
maintainers {judaew @judaew} openmaintainer
|
2016-12-20 09:30:44 -05:00
|
|
|
description library for processing UTF-8 encoded Unicode strings
|
2025-01-30 08:11:54 +11:00
|
|
|
long_description {*}${description}
|
2007-04-22 13:17:42 +00:00
|
|
|
|
2018-01-30 21:04:26 -08:00
|
|
|
homepage https://julialang.org/utf8proc/
|
2007-04-22 13:17:42 +00:00
|
|
|
|
2026-01-19 16:58:12 +02:00
|
|
|
checksums rmd160 b56d484287727c8d01147b641a019558273e5206 \
|
|
|
|
|
sha256 abfed50b6d4da51345713661370290f4f4747263ee73dc90356299dfc7990c78 \
|
|
|
|
|
size 202535
|
2018-07-28 11:01:30 -05:00
|
|
|
|
2025-12-01 21:42:26 +02:00
|
|
|
post-patch {
|
|
|
|
|
reinplace {s/WCFLAGS = -Wsign-conversion/WCFLAGS =/} ${worksrcpath}/Makefile
|
|
|
|
|
}
|
2022-06-15 18:18:44 -04:00
|
|
|
|
2023-10-15 17:32:00 -04:00
|
|
|
makefile.prefix_name \
|
|
|
|
|
prefix
|
2011-07-03 07:35:46 +00:00
|
|
|
|
2023-10-18 15:24:14 -05:00
|
|
|
makefile.override-append \
|
|
|
|
|
PREFIX
|
|
|
|
|
|
2016-12-20 09:43:57 -05:00
|
|
|
post-destroot {
|
2016-12-20 09:30:44 -05:00
|
|
|
set docdir ${destroot}${prefix}/share/doc/${name}
|
|
|
|
|
xinstall -d ${docdir}
|
|
|
|
|
xinstall -m 644 -W ${worksrcpath} \
|
2016-12-20 09:43:57 -05:00
|
|
|
LICENSE.md \
|
|
|
|
|
README.md \
|
|
|
|
|
NEWS.md \
|
2016-12-20 09:30:44 -05:00
|
|
|
${docdir}
|
2007-04-22 13:17:42 +00:00
|
|
|
}
|
|
|
|
|
|
2018-04-17 21:36:52 -05:00
|
|
|
depends_test bin:curl:curl
|
2016-12-20 09:43:57 -05:00
|
|
|
test.run yes
|
|
|
|
|
test.target check
|