blob: e424c35083481465f5e0fb0f54f798ed75186589 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Maintainer: VinÃcius Moreira <vinicius_fmoreira@hotmail.com>
pkgname=bauh-staging
pkgver=0.10.8.RC
pkgrel=2
_commit="17524c49fb9f8d9a1544d42012d49e1175c09066"
pkgdesc="Graphical interface for managing your applications (AppImage, Flatpak, Snap, Arch/AUR, Web). Testing branch (it may not be working properly)."
arch=('any')
url="https://github.com/vinifmor/bauh"
license=('zlib/libpng')
depends=('python' 'python-pyqt5' 'python-pyqt5-sip' 'python-requests' 'python-colorama' 'python-pyaml' 'qt5-svg' 'python-dateutil')
optdepends=('flatpak: required for Flatpak support'
'snapd: required for Snap support'
'python-beautifulsoup4: for Native Web applications support'
'python-lxml: for Native Web applications support'
'sqlite3: required for AppImage support'
'fuse2: may be required for AppImage support'
'fuse3: may be required for AppImage support'
'pacman: required for AUR support'
'binutils: required for AUR support'
'git: required for AUR support'
'rebuild-detector: enables rebuild checking for AUR packages (optional)'
'autoconf: may be required to compile some AUR packages'
'automake: may be required to compile some AUR packages'
'bison: may be required to compile some AUR packages'
'fakeroot: may be required to compile some AUR packages'
'flex: may be required to compile some AUR packages'
'gcc: may be required to compile some AUR packages'
'm4: may be required to compile some AUR packages'
'lib32-fakeroot: may be required to compile some AUR packages'
'make: may be required to compile some AUR packages'
'patch: may be required to compile some AUR packages'
'pkgconf: may be required to compile some AUR packages'
'ccache: can improve AUR packages compilation speed'
'aria2: multi-threaded downloading support'
'breeze: KDE Plasma main theme'
'axel: multi-threaded downloading support'
'shadow: to install AUR packages as the root user'
'util-linux: to install AUR packages as the root user'
'xdg-utils: to open URLs in the browser')
makedepends=('python-build' 'python-installer' 'python-wheel' 'python-setuptools')
provides=("bauh")
conflicts=('bauh')
source=("${url}/archive/${_commit}.tar.gz")
sha512sums=('f57e3730cb7c8ceae74fb684e967c7a7e7b1682e1f36dc2310e8a6c1629a7657b43615353f8b40fc8808f46d6aac40bc7cda85f8926e1c0d092950a95f6c31d8')
build() {
cd "${srcdir}/bauh-${_commit}"
# removing outdated setup files
rm setup.cfg setup.py requirements.txt
python -m unittest discover -s tests -t tests -v || return 1
python -m build --wheel --no-isolation
}
package() {
cd "${srcdir}/bauh-${_commit}"
python -m installer --destdir="$pkgdir" dist/*.whl
mkdir -p $pkgdir/usr/share/icons/hicolor/scalable/apps
cp bauh/view/resources/img/logo.svg $pkgdir/usr/share/icons/hicolor/scalable/apps/bauh.svg
mkdir -p $pkgdir/usr/share/applications
mv bauh/desktop/bauh.desktop $pkgdir/usr/share/applications/
mv bauh/desktop/bauh_tray.desktop $pkgdir/usr/share/applications/
mkdir -p $pkgdir/etc/bauh/
echo "debian" > $pkgdir/etc/bauh/gems.forbidden
}
|