# Maintainer: Rudolf Polzer # Contributor: FabioLolix pkgname=aaaaxy pkgver=1.5.42 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=('469622c4a3247d32b2ae29b228504474d24f261cc2a55ab92d98bd84eb7c6ba2' 'a0e66aa8afb8769db756b1021b019924567eac955781c0c2b1ff3f32d814d482') 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 }