mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
37 lines
1022 B
Bash
37 lines
1022 B
Bash
# Arch contribution https://aur4.archlinux.org/packages/qsyncthingtray/
|
|
|
|
pkgname=qsyncthingtray
|
|
pkgver=0.4.4
|
|
pkgrel=1
|
|
pkgdesc="Tray app for syncthing"
|
|
arch=('x86_64')
|
|
url="https://github.com/sieren/QSyncthingTray"
|
|
license=('LGPL2.1')
|
|
depends=('qt5-webengine' 'qt5-webchannel' 'qt5-location' 'syncthing')
|
|
makedepends=('cmake')
|
|
install=$pkgname.install
|
|
source=("$pkgname-$pkgver.tar.gz::https://github.com/sieren/QSyncthingTray/archive/$pkgver.tar.gz"
|
|
"$pkgname.desktop")
|
|
sha1sums=('2000dbe56c187f3e233fccc0361296b1357e35b3'
|
|
'bfd5a49e55a34cf2f45641797a8acdd45122042d')
|
|
|
|
|
|
_pkgname=QSyncthingTray
|
|
|
|
build() {
|
|
cd "$_pkgname-$pkgver"
|
|
mkdir -p build
|
|
cd build
|
|
QTDIR=/usr/lib/qt5 cmake ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$_pkgname-$pkgver"
|
|
install -Dm755 "build/$_pkgname" "$pkgdir/usr/bin/$_pkgname"
|
|
|
|
# install .desktop file
|
|
install -Dm755 "$srcdir/$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
|
|
install -Dm755 "src/images/Icon1024.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
|
|
}
|