# Maintainer: Rudolf Polzer # Contributor: FabioLolix pkgname=aaaaxy pkgver=1.5.129 pkgrel=1 pkgdesc='A nonlinear puzzle platformer taking place in impossible spaces' arch=('x86_64') url="https://github.com/divVerent/$pkgname" license=('Apache') depends=('alsa-lib' 'hicolor-icon-theme' 'libglvnd' 'libx11') # Note: libxcursor libxinerama libxi libxrandr are unused direct dependencies. # They are referenced at build time, but as no symbols are referenced and the # external linker is used with --as-needed in Arch's default LDFLAGS, these will # not actually be linked to by the final binary. This is why these are in # makedepends but not depends. makedepends=('go' 'libxcursor' 'libxinerama' 'libxi' 'libxrandr' 'make' 'zip') source=("aaaaxy-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz" "${url}/releases/download/v${pkgver}/sdl-gamecontrollerdb-for-aaaaxy-v${pkgver}.zip") sha256sums=('4476197923af8b0ea4b4938d119635f6ddcdb1d1cb0cb72413a99a07f596b4cf' '0db59ef47eb17fe5d60140c494ebaea3460fa816a055c5f0fff1d0962c83fbaa') prepare() { cd "$pkgname-$pkgver" mkdir -p third_party/SDL_GameControllerDB/assets/input/ cp ../third_party/SDL_GameControllerDB/assets/input/* third_party/SDL_GameControllerDB/assets/input/ } build() { cd "$pkgname-$pkgver" export ADVZIP=: # Exists only in AUR, so disable for now. export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw" export AAAAXY_BUILD_USE_VERSION_FILE=true make BUILDTYPE=release } package() { cd "$pkgname-$pkgver" install -Dm644 io.github.divverent.$pkgname.metainfo.xml "$pkgdir"/usr/share/metainfo/io.github.divverent.$pkgname.metainfo.xml install -Dm644 $pkgname.png "$pkgdir"/usr/share/icons/hicolor/128x128/apps/$pkgname.png install -Dm644 $pkgname.desktop "$pkgdir"/usr/share/applications/$pkgname.desktop install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname }