blob: 10f46f78db7f9410b7a8b9b8706c89409093466b (
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
|
# Maintainer: hakaishi
pkgname=qshutdown-git
_pkgname=qshutdown
pkgpref=shutdown-qapps
pkgver=1.8.0
pkgrel=2
pkgdesc="Shutdown your computer"
arch=('x86_64')
url="https://launchpad.net/~hakaishi/+archive/ubuntu/qshutdown"
license=('custom')
conflicts=('qshutdown')
depends=('qt5-tools' 'qt5-base')
source=("git+https://github.com/hakaishi/shutdown-qapps.git")
md5sums=('SKIP')
build() {
cd "$srcdir/$pkgpref/${_pkgname}"
qmake
make -j4
}
package() {
cd "$srcdir/$pkgpref/${_pkgname}"
make INSTALL_ROOT="$pkgdir" install
}
|