25 lines
823 B
Bash
25 lines
823 B
Bash
# Template file for 'bc-java'
|
|
pkgname=bc-java
|
|
version=1.79
|
|
revision=1
|
|
hostmakedepends="apache-ant openjdk17"
|
|
depends="virtual?java-runtime"
|
|
short_desc="Bouncy Castle Java cryptography APIs"
|
|
maintainer="classabbyamp <void@placeviolette.net>"
|
|
license="MIT"
|
|
homepage="https://www.bouncycastle.org/java.html"
|
|
changelog="https://www.bouncycastle.org/releasenotes.html"
|
|
distfiles="https://github.com/bcgit/bc-java/archive/refs/tags/r${version/./rv}.tar.gz"
|
|
checksum=d9da71f958e1779a396407a24e607036a19e5c482d385cadfe0455e21ac35055
|
|
|
|
do_build() {
|
|
. /etc/profile.d/jdk.sh
|
|
ant -f ant/jdk18+.xml clean build-provider build
|
|
}
|
|
|
|
do_install() {
|
|
vinstall build/artifacts/jdk1.8/jars/bcprov-jdk18on-${version}.jar 644 /usr/lib/bc-java
|
|
ln -s bcprov-jdk18on-${version}.jar "${DESTDIR}"/usr/lib/bc-java/bcprov.jar
|
|
vlicense LICENSE.html
|
|
}
|