summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6f8fc06d17a2c5c8bc481df7927f936a5ab6d599 (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
38
39
# Maintainer: MCMic <come@chilliet.eu>
# Contributor: MCMic <come@chilliet.eu>
# Contributor: BenObiWan <benobiwan @t gmail dot com>

pkgname=zelda-roth-se
pkgver=1.2.1
pkgrel=2
epoch=
pkgdesc="Zelda : Return of the Hylian solarus edition."
arch=('any')
url="https://www.solarus-games.org/en/games/the-legend-of-zelda-return-of-the-hylian-se"
license=('custom')
groups=()
depends=('solarus>=1.6.0')
makedepends=('cmake')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://gitlab.com/solarus-games/${pkgname}/-/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
noextract=()
md5sums=('f697f89e5d52ccfc25a9e70d50edda4c')

build() {
  cd "${srcdir}/${pkgname}-v${pkgver}"
  cmake -D CMAKE_INSTALL_PREFIX="/usr" -D CMAKE_BUILD_TYPE=Release .
  make
}

package() {
  cd "${srcdir}/${pkgname}-v${pkgver}"
  make DESTDIR="${pkgdir}/" PREFIX="/usr" install
}