50 lines
1.7 KiB
RPMSpec
50 lines
1.7 KiB
RPMSpec
Name: compress-lzf
|
|
Version: 1.0.3
|
|
Release: 1
|
|
Summary: Basic LZF codec, compatible with standard C LZF package
|
|
License: ASL 2.0
|
|
URL: https://github.com/ning/compress
|
|
Source0: https://github.com/ning/compress/archive/%{name}-%{version}.tar.gz
|
|
BuildRequires: maven-local mvn(junit:junit) mvn(org.apache.felix:maven-bundle-plugin)
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-enforcer-plugin)
|
|
BuildRequires: mvn(org.apache.maven.surefire:surefire-testng)
|
|
BuildRequires: mvn(org.sonatype.oss:oss-parent:pom:) mvn(org.testng:testng)
|
|
BuildArch: noarch
|
|
%description
|
|
Compression codec for LZF encoding for particularly encoding/decoding,
|
|
with reasonable compression. Compressor is basic Lempel-Ziv codec,
|
|
without Huffman (deflate/gzip) or statistical post-encoding. See
|
|
"http://oldhome.schmorp.de/marc/liblzf.html" for more on
|
|
original LZF package.
|
|
|
|
%package javadoc
|
|
Summary: Javadoc for %{name}
|
|
%description javadoc
|
|
This package contains javadoc for %{name}.
|
|
|
|
%prep
|
|
%setup -q -n compress-%{name}-%{version}
|
|
find . -name "*.class" -print -delete
|
|
find . -name "*.jar" -type f -print -delete
|
|
%pom_remove_plugin :maven-source-plugin
|
|
%pom_xpath_remove "pom:project/pom:build/pom:plugins/pom:plugin[pom:artifactId='maven-javadoc-plugin']/pom:executions"
|
|
%pom_add_dep junit:junit::test
|
|
%mvn_file : %{name}
|
|
|
|
%build
|
|
%mvn_build -- -Poffline-testing
|
|
|
|
%install
|
|
%mvn_install
|
|
|
|
%files -f .mfiles
|
|
%doc README.md VERSION.txt
|
|
%license LICENSE
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
%license LICENSE
|
|
|
|
%changelog
|
|
* Thu Jul 30 2020 wutao <wutao61@huawei.com> - 1.0.3-1
|
|
- package init
|