summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 448af4dab7b61baa6eb7ba220efb5aa580b5ea0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pkgname=tag_puzzle
pkgver=1.1
pkgrel=1
pkgdesc="A simple Tag game, written on C++ & SFML"
arch=( "any" )
url="https://github.com/KonstantinProgger/Tag-Puzzle"
license=( "Apache License 2.0" )
depends=( 'gcc' 'cmake' 'sfml' )
makedepends=( 'gcc' 'cmake' 'sfml' )
source=( "https://raw.githubusercontent.com/KonstantinProgger/my_archive/master/tag_puzzle.1.1.tar.gz" )
md5sums=( "cc277bad7f662d70ac8222920e22723c" )

package() {
    cmake CMakeLists.txt
    make all
    sudo make install
}