forked from pool/javazic
Allow building with java > 1.7 OBS-URL: https://build.opensuse.org/request/show/530676 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/javazic?expand=0&rev=13
61 lines
2.0 KiB
RPMSpec
61 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package javazic
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: javazic
|
|
# javazic source codes comes from openjdk6-b09 source archive
|
|
# see package java-1_6_0-java for details and source code
|
|
Version: 1.6.0
|
|
Release: 0
|
|
Summary: A time zone compiler for Java
|
|
License: GPL-2.0-with-classpath-exception
|
|
Group: Development/Libraries/Java
|
|
Url: http://icedtea.classpath.org
|
|
Source0: javazic.tar.gz
|
|
Patch0: javazic-fixup.patch
|
|
BuildRequires: java-devel
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
This is a time zone compiler for opensource Java Virtual Machine
|
|
derived from openjdk6 source code.
|
|
|
|
%prep
|
|
%setup -q -c %{name}-%{version}
|
|
%patch0 -b .javazic-fixup
|
|
|
|
%build
|
|
mv sun/util sun/whatever
|
|
perl -pi -e 's#sun\.util\.calendar#sun\.whatever\.calendar#g' $(find sun/ -iname '*.java')
|
|
javac -source 6 -target 6 $(find sun/ -iname '*.java')
|
|
echo "Main-Class: sun.tools.javazic.Main" > manifest.txt
|
|
jar -cfm %{name}-%{version}.jar manifest.txt $(find . -iname '*.class')
|
|
|
|
%install
|
|
install -d -m 0755 %{buildroot}/%{_javadir}
|
|
install -m 0644 %{name}-%{version}.jar %{buildroot}/%{_javadir}/
|
|
# jars
|
|
(cd %{buildroot}%{_javadir}/ && for jar in *-%{version}*; do ln -sf ${jar} ${jar/-%{version}/}; done)
|
|
install -d -m 0755 %{buildroot}/%{_datadir}/%{name}
|
|
cp -rp tzdata_jdk %{buildroot}/%{_datadir}/%{name}/
|
|
|
|
%files
|
|
%{_javadir}/%{name}*.jar
|
|
%{_datadir}/%{name}
|
|
|
|
%changelog
|