firefox-java-plugin: dropped. no longer supported in firefox

This commit is contained in:
Fredrik Rinnestam 2017-09-14 21:32:06 +02:00
parent 3731631341
commit 8becc0b6c4
3 changed files with 0 additions and 35 deletions

View File

@ -1,5 +0,0 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/mozilla/
drwxr-xr-x root/root usr/lib/mozilla/plugins/
lrwxrwxrwx root/root usr/lib/mozilla/plugins/libnpjp2.so -> /usr/lib/java/lib/amd64/libnpjp2.so

View File

@ -1,30 +0,0 @@
# Description: Java plugin for Mozilla Firefox
# URL: http://java.sun.com
# Maintainer: Jose V Beneyto, sepen at users dot sourceforge dot net
# Depends on: jre, firefox
name=firefox-java-plugin
version=1.7.0
release=2
source=()
build(){
plugins=(
# jre
/usr/lib/java/lib/amd64/libnpjp2.so \
# jdk
/usr/lib/java/jre/lib/amd64/libnpjp2.so
)
for p in ${plugins[@]}; do
test -f $p && break
done
if [ ! -f $p ]; then
echo "Java Runtime Environment not found!"
return
fi
mkdir -p $PKG/usr/lib/mozilla/plugins
ln -s $p $PKG/usr/lib/mozilla/plugins
}