Package Details: komodo-edit 12.0.1_18441-2

Git Clone URL: https://aur.archlinux.org/komodo-edit.git (read-only, click to copy)
Package Base: komodo-edit
Description: Free & Open-Source counterpart of ActiveState Komodo IDE - XUL based
Upstream URL: http://www.activestate.com/komodo-edit
Licenses: MPL
Conflicts: komodo-ide, komodo-ide-nightly, komodoedit
Submitter: max-k
Maintainer: max-k
Last Packager: max-k
Votes: 254
Popularity: 0.000038
First Submitted: 2013-05-24 00:14 (UTC)
Last Updated: 2020-11-09 08:09 (UTC)

Latest Comments

« First ‹ Previous 1 .. 13 14 15 16 17 18

max-k commented on 2010-10-19 19:56 (UTC)

Thank you but to use your PKGBUILD i must add perl as a build dependency and i don't want that. I've replaced it with sed. Updated.

dapolinario commented on 2010-10-19 04:06 (UTC)

New version of the PKGBUILD (upgrading the komodo-edit-6.desktop, removing the "desktop" from the end and python as a dependency, it is not necessary -> it's now an optional dependency): # Contributor: max-k <max-k@post.com> if [ $(uname -m) = "x86_64" ] ; then _arch="x86_64" else _arch="x86" fi _major="6.0.0" _minor=6454 pkgname="komodoedit" pkgver="${_major}_${_minor}" pkgrel=4 pkgdesc="Open-Source version of ActiveState Komodo IDE - Based on XUL" arch=(i686 x86_64) url="http://www.openkomodo.com/" license=('MPL') conflicts=('komodoedit-nightly' 'komodoedit-beta') source=("http://downloads.activestate.com/Komodo/releases/${_major}/Komodo-Edit-${_major}-${_minor}-linux-libcpp6-${_arch}.tar.gz") if [ $_arch = "x86_64" ] ; then md5sums=('98ea3e542233635b4a31f35c57dc0938') else md5sums=('897465556a21d12352549104b6f1b471') fi build() { cd ${startdir}/src/Komodo-Edit-${_major}-${_minor}-linux-libcpp6-${_arch} ./install.sh -s -I ${startdir}/pkg/opt/${pkgname} perl -pi -e "s/Komodo\ Edit-6.desktop/Komodo\ Edit-6/g" ${startdir}/pkg/opt/${pkgname}/share/desktop/komodo-edit-6.desktop grep -v ${startdir} ${startdir}/pkg/opt/${pkgname}/share/desktop/komodo-edit-6.desktop > ${startdir}/${pkgname}.desktop echo "Exec=/opt/${pkgname}/bin/komodo %F" >> ${startdir}/${pkgname}.desktop echo "Icon=/opt/${pkgname}/share/icons/komodo48.png" >> ${startdir}/${pkgname}.desktop install -D -m 644 ${startdir}/${pkgname}.desktop ${startdir}/pkg/usr/share/applications/${pkgname}.desktop }

max-k commented on 2010-10-07 18:24 (UTC)

OK. Done.

dapolinario commented on 2010-10-07 15:47 (UTC)

Also replace the line: echo "Icon = / opt / $ (pkgname) / share/icons/komodo16.png">> $ (StartDir) / $ (pkgname). desktop for this: echo "Icon = / opt / $ (pkgname) / share/icons/komodo48.png">> $ (StartDir) / $ (pkgname). desktop To keep the pattern in other Gnome icons.

dapolinario commented on 2010-10-07 15:28 (UTC)

Also replace the line: echo "Icon = / opt / $ (pkgname) / share/icons/komodo16.png">> $ (StartDir) / $ (pkgname). desktop for this: echo "Icon = / opt / $ (pkgname) / share/icons/komodo48.png">> $ (StartDir) / $ (pkgname). desktop To keep the pattern in other Gnome icons.

<deleted-account> commented on 2010-10-07 10:31 (UTC)

thanks for updated pkgbuild. Need to change the line 'grep ... komodo-edit-5.desktop ...' to 'grep ... komodo-edit-6.desktop ...'

max-k commented on 2010-10-07 08:25 (UTC)

Hey guy, you're in a hurry ! Komodoedit 6 has been released only tomorrow. I'll update. Thanks.

dapolinario commented on 2010-10-07 05:28 (UTC)

My PKGBUILD for version 6.0.0 (the pastebin is offline): # Contributor: max-k <max-k@post.com> if [ $(uname -m) = "x86_64" ] ; then _arch="x86_64" else _arch="x86" fi _major="6.0.0" _minor=6454 pkgname="komodoedit" pkgver="${_major}_${_minor}" pkgrel=1 pkgdesc="Open-Source version of ActiveState Komodo IDE - Based on XUL" arch=(i686 x86_64) url="http://www.openkomodo.com/" license=('MPL') depends=('python') conflicts=('komodoedit-nightly' 'komodoedit-beta') source=("http://downloads.activestate.com/Komodo/releases/${_major}/Komodo-Edit-${_major}-${_minor}-linux-libcpp6-${_arch}.tar.gz") if [ $_arch = "x86_64" ] ; then md5sums=('98ea3e542233635b4a31f35c57dc0938') else md5sums=('897465556a21d12352549104b6f1b471') fi build() { cd ${startdir}/src/Komodo-Edit-${_major}-${_minor}-linux-libcpp6-${_arch} ./install.sh -s -I ${startdir}/pkg/opt/${pkgname} grep -v ${startdir} ${startdir}/pkg/opt/${pkgname}/share/desktop/komodo-edit-6.desktop > ${startdir}/${pkgname}.desktop echo "Exec=/opt/${pkgname}/bin/komodo %F" >> ${startdir}/${pkgname}.desktop echo "Icon=/opt/${pkgname}/share/icons/komodo48.png" >> ${startdir}/${pkgname}.desktop install -D -m 644 ${startdir}/${pkgname}.desktop ${startdir}/pkg/usr/share/applications/${pkgname}.desktop }

dapolinario commented on 2010-09-01 03:24 (UTC)

Replace this line in the PKGBUILD: grep -v ${startdir} ${startdir}/pkg/opt/${pkgname}/share/desktop/komodo-edit-5.desktop > ${startdir}/${pkgname}.desktop For this: grep -v ${startdir} ${startdir}/pkg/opt/${pkgname}/share/desktop/komodo-edit-6.desktop > ${startdir}/${pkgname}.desktop Change the number 5 by 6.