blob: 7343a8f7754b6ec59f9d1fead36b900c0ab798f5 (
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
|
# 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')
makedepends=('git')
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/"
}
|