You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-03-31 14:42:53 -07:00
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
PortSystem 1.0
|
|
|
|
name xmlpull
|
|
version 1.1.3.4c
|
|
set version_us [string map {. _} $version]
|
|
categories java textproc
|
|
license public-domain
|
|
platforms any
|
|
supported_archs noarch
|
|
maintainers nomaintainer
|
|
description XML pullparser API
|
|
long_description XmlPull v1 API is a simple to use XML pull parsing API \
|
|
that was designed for simplicity and very good performance \
|
|
both in constrained environment such as defined by J2ME and on \
|
|
server side when used in J2EE application servers. XML pull \
|
|
parsing allows incremental (sometimes called streaming) \
|
|
parsing of XML where application is in control - the parsing \
|
|
can be interrupted at any given moment and resumed when \
|
|
application is ready to consume more input.
|
|
|
|
homepage http://www.xmlpull.org/
|
|
master_sites ${homepage}v1/download/
|
|
distfiles ${name}_${version_us}_src.tgz
|
|
checksums md5 34c8a093e5678dd633411dfea88f8558 \
|
|
sha1 cc20f5952d85a2c138e702650c29c79c6b556c6c
|
|
|
|
worksrcdir ${name}_${version_us}
|
|
|
|
depends_build bin:ant:apache-ant
|
|
depends_lib bin:java:kaffe
|
|
|
|
use_configure no
|
|
|
|
build.cmd ant
|
|
build.target jar
|
|
|
|
destroot {
|
|
xinstall -m 755 -d ${destroot}${prefix}/share/java
|
|
xinstall -m 644 ${worksrcpath}/build/lib/${name}_${version_us}.jar \
|
|
${destroot}${prefix}/share/java/${name}.jar
|
|
}
|