summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 06749fadc46048fb8e7fe8a362d09b41c5a43652 (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
32
33
34
35
36
# Maintainer: Francisco Domínguez Lerma <francisco.dominguez.lerma@gmail.com>
pkgname=poketty
pkgver=git
pkgrel=1
pkgdesc="Pokemon battle simulator for tty, .pkg files not included"
arch=('any')
url="https://github.com/sonozaki/poketty.git"
license=('GPL')
groups=()
depends=()
makedepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=(https://github.com/sonozaki/poketty/archive/master.zip)
noextract=()
md5sums=('7755c2b7bcf25ba0e192bda9fde67520')

build() {
  cd "$srcdir/poketty-master"
  make

}

package() {

cd "$srcdir/poketty-master"
mkdir -p "$pkgdir/usr/bin"
cp poketty "$pkgdir/usr/bin/"

}