blob: a13743c92fba1742d2bd5bfaf1edb17fc598b67a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Rishab Ramanathan <rrishab2001 at gmail dot tld>
pkgname=pong-ramanathan-git
pkgver=0.1
pkgrel=1
pkgdesc="Basic pong game made with SDL in c++"
arch=(x86_64)
url="https://github.com/wonder-coconut/pong.git"
license=('GPL')
depends=(sdl2 sdl2_ttf sdl2_mixer)
makedepends=(git make)
optdepends=()
provides=(pong-ramanathan)
source=("git+$url")
md5sums=(SKIP)
package() {
cd pong
make DESTDIR="$pkgdir/" install
}
|