blob: d52ded1e9b400de76c78a637b61547aea5262afc (
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
|
# Maintainer: Pellegrino Prevete <pellegrinoprevete@gmail.com>
# shellcheck disable=SC2034
# _target="arm-none-eabi"
_platform="ps2"
_base="toolchain"
_module="dvp"
_bu="binutils"
pkgname="${_platform}-${_module}"
pkgver=v1.0
pkgrel=1
_pkgdesc=("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}-${_module}"
depends=("${_module}-${_bu}")
optdepends=()
# shellcheck disable=SC2154
build() {
echo "metapackage"
}
# shellcheck disable=SC2154
package() {
echo "metapackage"
}
|