blob: 69983727edc818fc29d9b9f3091bef25ec987e16 (
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
|
# Maintainer: Pellegrino Prevete <pellegrinoprevete@gmail.com>
# shellcheck disable=SC2034
_platform="ps2"
_target="mipsel-${_platform}"
_base="toolchain"
pkgname="${_platform}-${_base}"
pkgver=v1.0
pkgrel=1
_pkgdesc=("Compiler and other tools used in the creation of homebrew software "
"for the Sony PlayStation® 2 videogame system.")
pkgdesc="${_pkgdesc[*]}"
arch=('x86_64')
license=('BSD')
_github="https://github.com/ps2dev"
_local="ssh://git@127.0.0.1:/home/git"
url="${_github}/${_platform}${_base}"
depends=("${_platform}-"{"dvp","iop","ee"})
optdepends=()
build() {
echo "metapackage"
}
# shellcheck disable=SC2154
package() {
echo "metapackage"
}
|