summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 916fd2efff9a94996573d826861da23e610a0f9f (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
# Maintainer: David Buchanan <d@vidbuchanan.co.uk>
# Contributor: Ave Ozkal <aurpub@ave.zone>
# Contributor: Nikos Fytilis <n-fit@live.com>

_name=fusee-nano
pkgname="$_name-git"
pkgver=0.5.3.2.ge3642e0
pkgrel=1
pkgdesc="A minimalist re-implementation of the Fusée Gelée exploit (git version)"
arch=('any')
url="https://github.com/DavidBuchanan314/fusee-nano"
license=('mit')
makedepends=('git' 'vim')
source=("$_name::git+https://github.com/DavidBuchanan314/fusee-nano")
md5sums=(SKIP)

pkgver() {
  cd $_name
  git describe --long --tags | tr - .
}

build() {
  cd $_name
  make
}

package() {
  cd $_name
  make install "PREFIX=${pkgdir}/usr/bin"
}