summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 692f8277b5e3e148bef4183c16dc6ce1ea76cb02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Gary Streck <gstreck at comcast dot net>

pkgname=smbbrowse
pkgver=1.1
pkgrel=0
pkgdesc="Samba share browser and mounter written in Python. Supports SMBv2 and SMBv3"
arch=(any)
url="https://github.com/cyberjunkie1970/smbbrowse"
license=('MIT')
depends=('smbclient' 'gvfs-smb' 'python' 'python-pillow' 'tk' 'xdg-utils' 'sshfs')
makedepends=('git')
provides=('SMBbrowse.py')
source=("git+https://github.com/cyberjunkie1970/${pkgname}.git")
md5sums=('SKIP')
 
package() {
    cd "$pkgname"
    install -Dm755 SMBbrowse.py "$pkgdir/usr/bin/SMBbrowse.py"
    install -Dm644 serverIcon.png "$pkgdir/usr/share/pixmaps/$pkgname/serverIcon.png"
    install -Dm644 folderIcon.png "$pkgdir/usr/share/pixmaps/$pkgname/folderIcon.png"
    install -Dm644 SMBbrowse.desktop "$pkgdir/usr/share/applications/SMBbrowse.desktop"
    install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}