blob: 9553d171f95b133b72e0db098b7ece1aada51b89 (
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
|
# Maintainer: bauh developers <bauh4linux@gmail.com>
pkgname=bauh
pkgver=0.9.6
pkgrel=1
pkgdesc="Graphical interface for managing your applications ( AppImage, Flatpak, Snap, Arch/AUR, Web )"
arch=('any')
url="https://github.com/vinifmor/bauh"
license=('zlib/libpng')
depends=('python' 'python-pyqt5' 'python-requests' 'python-colorama' 'python-pyaml')
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'
'wget: required for AppImage and AUR 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: to allow AUR packages downgrading'
'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: faster AppImages and AUR source downloads'
'breeze: for KDE Plasma main theme be available')
makedepends=('git' 'python' 'python-pip' 'python-setuptools')
source=("${url}/archive/${pkgver}.tar.gz")
sha512sums=('cb1820b8a41dccec746d91d71b7f524c2e3caf6b30b0cd9666598b8ad49302654d9ce9bd1a0a2a9612afebc27ef78a2a94ac10e4e6c183742effe4feeabaa7b2')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
python3 setup.py build
}
package() {
cd "${srcdir}/bauh-${pkgver}"
python3 setup.py install --root="$pkgdir" --optimize=1 || return 1
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/
}
|