mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
38 lines
1013 B
Tcl
38 lines
1013 B
Tcl
# -*- 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
|
|
|
|
PortSystem 1.0
|
|
PortGroup xmlcatalog 1.0
|
|
|
|
name iso8879
|
|
version 1986
|
|
revision 2
|
|
categories textproc
|
|
license Permissive
|
|
maintainers nomaintainer
|
|
description Character entity sets from ISO 8879:1986 (SGML)
|
|
platforms any
|
|
supported_archs noarch
|
|
|
|
long_description {*}$description
|
|
homepage https://www.freshports.org/textproc/iso8879/
|
|
master_sites freebsd
|
|
|
|
distname isoENTS
|
|
checksums md5 c8a9561212c1a2ec6e48919640de9c67
|
|
|
|
use_zip yes
|
|
|
|
use_configure no
|
|
build {}
|
|
|
|
set install_dir ${prefix}/share/sgml/${name}
|
|
sgml.catalog "${install_dir}/catalog"
|
|
|
|
destroot.args prefix=${destroot}${prefix}
|
|
|
|
destroot {
|
|
xinstall -m 755 -d ${destroot}${install_dir}
|
|
xinstall -m 644 ${filespath}/catalog ${destroot}${install_dir}
|
|
xinstall -m 644 {*}[glob ${workpath}/ISO*] ${destroot}${install_dir}
|
|
}
|