update to version 10.1.0_589

This commit is contained in:
Romain Bazile 2017-12-22 17:14:35 +01:00
parent 8e647e5ab1
commit da203b1595
2 changed files with 15 additions and 9 deletions

View file

@ -1,22 +1,21 @@
pkgbase = mcuxpresso-ide
pkgdesc = An easy-to-use integrated development environment (IDE) for creating, building, debugging, and optimizing your application. From BIN package distributed by NXP.
pkgver = 10.0.2_411
pkgver = 10.1.0_589
pkgrel = 1
url = http://www.nxp.com/MCUXPresso
arch = x86_64
license = custom:"NXP"
depends = dfu-util
depends = libusb
depends = webkitgtk
depends = ncurses
depends = glibc
depends = lib32-glibc
depends = jlink-software-and-documentation
noextract = mcuxpressoide-10.0.2_411.x86_64.deb.bin
noextract = mcuxpressoide-10.1.0_589.x86_64.deb.bin
options = !strip
source = https://freescaleesd.flexnetoperations.com/337170/537/11781537/mcuxpressoide-10.0.2_411.x86_64.deb.bin
source = https://freescaleesd.flexnetoperations.com/337170/897/12189897/mcuxpressoide-10.1.0_589.x86_64.deb.bin
source = LICENSE
sha256sums = 4cd3d04d7d7c0b84a69b801f3c0eb7fa4c897dbdbfcfe1fd7fd4d2295746b293
sha256sums = d7f7c44e1be9c8a53a9a8e28c050451be966e668d67195a3987bc0f9ea6fa49c
sha256sums = f54634d263ed329288adbcd617f971502a22f38717602c504371a49301d37fb2
pkgname = mcuxpresso-ide

View file

@ -1,17 +1,18 @@
# Maintainer: Romain Bazile <gromain.baz at gmail dot com>
pkgname=mcuxpresso-ide
pkgver=10.0.2_411
pkgver=10.1.0_589
pkgrel=1
epoch=
pkgdesc="An easy-to-use integrated development environment (IDE) for creating, building, debugging, and optimizing your application. From BIN package distributed by NXP."
arch=('x86_64')
url="http://www.nxp.com/MCUXPresso"
license=('custom:"NXP"')
depends=('dfu-util' 'libusb' 'webkitgtk' 'ncurses' 'glibc' 'lib32-glibc' 'jlink-software-and-documentation')
source=("https://freescaleesd.flexnetoperations.com/337170/537/11781537/mcuxpressoide-${pkgver}.${arch}.deb.bin" "LICENSE")
depends=('dfu-util' 'libusb' 'ncurses' 'glibc' 'lib32-glibc' 'jlink-software-and-documentation')
# https://freescaleesd.flexnetoperations.com/337170/897/12189897/mcuxpressoide-10.1.0_589.x86_64.deb.bin?ftpRequestID=5637320867&server=freescaleesd.flexnetoperations.com&dtm=DTM20171222153753MzQ1ODI4NDkz&authparam=1513985873_62b8205df8e35b24941a051172e6b535&ext=.bin
source=("https://freescaleesd.flexnetoperations.com/337170/897/12189897/mcuxpressoide-${pkgver}.${arch}.deb.bin" "LICENSE")
noextract=("mcuxpressoide-${pkgver}.${arch}.deb.bin")
sha256sums=('4cd3d04d7d7c0b84a69b801f3c0eb7fa4c897dbdbfcfe1fd7fd4d2295746b293'
sha256sums=('d7f7c44e1be9c8a53a9a8e28c050451be966e668d67195a3987bc0f9ea6fa49c'
'f54634d263ed329288adbcd617f971502a22f38717602c504371a49301d37fb2')
options=('!strip')
@ -26,6 +27,12 @@ prepare() {
bsdtar -x -f mcuxpressoide/data.tar.gz -C mcuxpressoide/
rm mcuxpressoide/data.tar.gz
rm JLink_Linux_x86_64.deb
# Rename main folder in place
mv ${srcdir}/mcuxpressoide/usr/local/mcuxpressoide-${pkgver} ${srcdir}/mcuxpressoide/usr/local/${pkgname};
# Update link in desktop file
mv ${srcdir}/mcuxpressoide/usr/share/applications/com.nxp.mcuxpressoide.desktop ${srcdir}/mcuxpressoide/usr/share/applications/com.nxp.mcuxpressoide.desktop.old
cat ${srcdir}/mcuxpressoide/usr/share/applications/com.nxp.mcuxpressoide.desktop.old | sed 's/mcuxpressoide-10.1.0_589/mcuxpresso-ide/' > ${srcdir}/mcuxpressoide/usr/share/applications/com.nxp.mcuxpressoide.desktop
rm ${srcdir}/mcuxpressoide/usr/share/applications/com.nxp.mcuxpressoide.desktop.old
}