blob: 327bd5e4f488d9188601d6db9968b2837a48e1f6 (
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
|
pkgname=storage-kween
pkgver=0.1.1
pkgrel=1
pkgdesc="An elegant GUI storage cleaner for Arch Linux users"
arch=('any')
url="https://github.com/drainch/storage-kween"
license=('MIT')
depends=('python' 'python-dearpygui' 'fdupes' 'util-linux' 'pacman-contrib')
optdepends=(
'zenity: optional GUI dialogs'
'file: media type detection'
'imagemagick: image analysis'
'python-pillow: image processing'
)
source=("https://github.com/drainch/storage-kween/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('SKIP')
package() {
cd "$srcdir/storage-kween-$pkgver"
install -Dm755 storage-kween.py "$pkgdir/usr/bin/storage-kween"
install -Dm644 storage-kween.desktop "$pkgdir/usr/share/applications/storage-kween.desktop"
}
|