summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: af6c29072218558704a27b59bbbe2ec360f34455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pkgname=mcstatus
pkgver=git
pkgrel=1
pkgdesc="A Minecraft server status probing library"
arch=('x86_64' 'i686')
url="https://github.com/MoeLeak/mcstatus"
license=('MIT')
depends=('cmake' 'boost' 'clang')
#install=mcstatus.install
source=("$pkgname::git+https://github.com/MoeLeak/mcstatus.git")
md5sums=('SKIP')

build() {
    cd $pkgname
    cmake .
    make
}

package() {
    cd $pkgname
    make DESTDIR="$pkgdir/" install
}