summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2dafbaf31077a091146bee78f0efadb1f8aae29f (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
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>

pkgname=shrinky-intro
pkgver=1.0.0
pkgrel=1
pkgdesc='Linux 4k intro skeleton (from dnload)'
arch=('x86_64')
url='https://github.com/xyproto/shrinky-intro/'
license=('BSD')
makedepends=('git' 'shrinky')
depends=('libgl' 'sdl2')
source=("git+https://github.com/xyproto/shrinky-intro#tag=v$pkgver")
md5sums=("SKIP")

build() {
  shrinky $pkgname/main.cpp
}

package() {
  install -Dm755 $pkgname/main "$pkgdir/usr/bin/$pkgname"
  install -Dm644 $pkgname/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

# vim: ts=2 sw=2 et: