summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Bazile2017-12-22 17:14:35 +0100
committerRomain Bazile2017-12-22 17:14:35 +0100
commitda203b159557612cedcfa18b3a1abc7c4877df07 (patch)
treea92d92dc315720fe4815312c27be0efaaa506466
parent8e647e5ab125ecab814ebf885610a3c19c772e53 (diff)
downloadaur-da203b159557612cedcfa18b3a1abc7c4877df07.tar.gz
update to version 10.1.0_589
-rw-r--r--.SRCINFO9
-rw-r--r--PKGBUILD15
2 files changed, 15 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e6183d6392f7..6dc1bd6873ef 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -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
diff --git a/PKGBUILD b/PKGBUILD
index 5b10f5be44d3..001e81c7b792 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -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
}