blob: 17feae22f3a407fbe869137fba0125135bb3d2f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Maintainer: Xavion <Xavion (dot) 0 (at) Gmail (dot) com>
# Co-Maintainer: derchef <mjindra (at) derchef (dot) email>
# Contributor: Evgeniy Alekseev <arcanis at archlinux dot org>
# Contributor: Ray Rashif <schiv at archlinux dot org>
# Contributor: Brad Fanella <bradfanellaat archlinux dot us>
# See .contrib for older/other contributors
pkgname=eric
pkgver=24.5
pkgrel=1
pkgdesc="A full-featured Python and Ruby IDE in PyQt"
arch=('any')
url="https://${pkgname}-ide.python-projects.org/"
license=('GPL3')
depends=(
'python-asttokens'
'python-black'
'python-coverage'
'python-editorconfig'
'python-isort'
'python-pyqt6-charts'
'python-pyqt6-webengine'
'python-qscintilla-qt6'
'python-semver'
'python-watchdog'
'python-tomlkit'
'qt6-serialport'
'qt6-svg'
'qt6-tools'
'qt6-websockets'
)
makedepends=('python-pip')
conflicts=(${pkgname}-common)
replaces=(${pkgname}-common)
source=("https://downloads.sourceforge.net/${pkgname}-ide/${pkgname}7-${pkgver}.tar.gz")
sha256sums=('9e4482202d5ce13898cd22fcf129d46b55cb1940a89fa39913586b5f6b521743')
package_eric() {
cd "${pkgname}7-${pkgver}"
python install.py -c -b "/usr/bin" -i "${pkgdir}"
# fix paths in desktop files
find "${pkgdir}" -name '*.desktop' -exec sed -i "s|${pkgdir}||g" {} \;
}
|