mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
43 lines
1.5 KiB
Bash
43 lines
1.5 KiB
Bash
# NOTE you need to update pkgdate together with pkgver
|
|
# check out pkgdate here https://netbeans.org/downloads/zip.html
|
|
|
|
pkgname=netbeans
|
|
pkgver=8.2
|
|
_pkgdate=201609300101
|
|
pkgrel=1
|
|
pkgdesc='Netbeans IDE development platform for Java, HTML5, PHP, Groovy, C and C++.'
|
|
arch=('x86_64')
|
|
url='http://www.netbeans.org'
|
|
license=('CDDL')
|
|
depends=('java-environment' 'ttf-font' 'libxtst' 'giflib' 'atk')
|
|
makedepends=('gendesk' 'setconf')
|
|
optdepends=('php: for developing programs in php'
|
|
'ruby: for developing programs in ruby'
|
|
'groovy: for developing programs in groovy')
|
|
categories=('programming')
|
|
options=('!strip')
|
|
backup=('usr/share/netbeans/etc/netbeans.conf')
|
|
install="${pkgname}.install"
|
|
source=("http://download.netbeans.org/netbeans/$pkgver/final/zip/netbeans-$pkgver-$_pkgdate.zip")
|
|
sha256sums=('ad9888334b9a6c1f1138dcb2eccc8ce4921463e871e46def4ecc617538160948')
|
|
|
|
prepare() {
|
|
gendesk -f -n --pkgname "${pkgname}" --pkgdesc "${pkgdesc}"
|
|
setconf "${pkgname}/bin/${pkgname}" basedir "/usr/share/${pkgname}"
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "${pkgdir}/usr/"{bin,share/applications}
|
|
cp -r "${pkgname}" "${pkgdir}/usr/share/"
|
|
|
|
# Desktop shortcut and icon
|
|
install -Dm644 "${pkgname}.desktop" \
|
|
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
|
|
cd "${pkgname}"
|
|
install -Dm644 "nb/${pkgname}.png" "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
|
|
install -Dm755 "bin/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
|
|
|
|
# Cleanup (contains the file that is now placed in /usr/bin + .exe-files)
|
|
rm -r "${pkgdir}/usr/share/${pkgname}/bin"
|
|
}
|