summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: faa78c6562a1881fc5994496468b420e4c275d9d (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
# Maintainer: EndlessEden
pkgname=wiwos20
pkgver=0.1
pkgrel=1
pkgdesc="S20 socket manager"
arch=('i686' 'x86_64')
url="https://git.stikonas.eu/andrius/s20"
license=('GPL')
depends=('qt5-base')
source=("$pkgname::git+https://git.stikonas.eu/andrius/s20.git")
md5sums=('SKIP')
build() {
        cd "$srcdir/$pkgname"
        mkdir build
        cd build
        cmake ..
        make
}
package() {
        cd "$srcdir/$pkgname"/build
        mkdir -p "$pkgdir/usr/bin/"
        cp s20 "$pkgdir/usr/bin/"
        cp s20-gui "$pkgdir/usr/bin/"
}