#!/bin/sh
PKGNAME=apache-netbeans
SKIPREPACK=1
# noarch package
#SUPPORTEDARCHES="x86_64"
VERSION="$2"
DESCRIPTION="Apache NetBeans from the official site"
URL="https://netbeans.apache.org"
. $(dirname $0)/common.sh
if [ "$VERSION" = "*" ] ; then
VERSION="$(eget --list https://dlcdn.apache.org/netbeans/netbeans-installers/* | tail -n1 | xargs basename)"
fi
pkgtype=$(epm print info -p)
case $pkgtype in
rpm)
mask="apache-netbeans-$VERSION-*.noarch.rpm"
;;
*)
mask="apache-netbeans_${VERSION}-*_all.deb"
;;
esac
# epm install "https://dlcdn.apache.org/netbeans/netbeans-installers/$VERSION/$mask"
PKGURL="https://archive.apache.org/dist/netbeans/netbeans-installers/$VERSION/$mask"
install_pkgurl
-
Vitaly Lipatov authored
epm play.d/common.sh: implement install_pkgurl and install_pack_pkgurl and use it (repack rpm packages for any distro)
155cb2e9