summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b8e61b4e408261d6367b6f32025daead9c35498d (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Maintainer: Ultracoolguy <dummyd241 at gmaildotcom>
pkgname="switch-lan-play"
pkgver=v0.1.0.r4.f62bf0c
pkgrel=1
epoch=0
pkgdesc="A program for connecting to switch-lan-play servers-see url for more info"
arch=(any)
url="https://github.com/spacemeowx2/switch-lan-play"
license=('GPL3')
groups=()
depends=(libpcap)
makedepends=(cmake)
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://github.com/spacemeowx2/switch-lan-play.git")
noextract=()
md5sums=('SKIP')
pkgver() {
  cd switch-lan-play

  git describe --tags | sed 's/-/.r/; s/-g/./'

}


prepare() {
	echo "Executing if"
	if [[ -d switch-lan-play ]];then
	  rm -rf switch-lan-play
	fi
	git clone $source
}

build()	{
	cd switch-lan-play
	mkdir build
	cd build
	cmake -DCMAKE_BUILD_TYPE=Release ..
	make
}
package() {
	cd switch-lan-play/build
	make DESTDIR="$pkgdir/" install
}