summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7ff96f0f50173c8c197107a440d03caa537922e0 (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
37
# Maintainer: Ryan Medeiros <lofenyy@linuxmail.org>
pkgname='librewands'
pkgver=0.0.3
pkgrel=1
pkgdesc="Map editor for a collaboratively made ncurses RPG featuring magick and monsters."
arch=(any)
url="https://gitea.com/lofenyy/LibreWands"
license=('GPL')
groups=()
depends=('ncurses')
makedepends=('make' 'gcc')
optdepends=('imagemagick' 'librsvg2' 'texlive')
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=(https://gitea.com/lofenyy/$pkgname/archive/$pkgver.tar.gz)
noextract=()
md5sums=('73b9d5b70f14ea4d10e86d79854e5a9d') #autofill using updpkgsums

prepare() {
  tar -xf $pkgver.tar.gz
}

build() {
  cd "$pkgname"
  make
}

package() {
  cd "$pkgname"

  make DESTDIR="$pkgdir/" install
}