You are not logged in.
I have created this PKGBUILD for my new AUR package at https://aur.archlinux.org/packages/catapult-bin
The issue is that the installed package doesn't work, makepkg seems to change the main executable file and checking with diff it tells me the two files differ.
Here's my PKGBUILD for reference:
# Maintainer: Aria Moradi <aria.moradi007 at gmail dot com>
pkgname=catapult-bin
pkgver=22.03b
pkgrel=1
pkgdesc="A cross-platform launcher for Cataclysm: DDA and BN"
arch=("x86_64")
url="https://github.com/qrrk/Catapult"
license=("MIT")
depends=()
provides=("catapult")
source=("$pkgname-$pkgver::$url/releases/download/$pkgver/catapult-linux-x64-$pkgver"
"catapult.sh")
sha256sums=('SKIP'
'72f7e507fc2081b2c7b51e389f3dd07c35954ec3576021bd7a11b6e35fc80d63')
noextract=("$pkgname-$pkgver")
package() {
install -Dm755 "${srcdir}/$pkgname-$pkgver" "${pkgdir}/opt/${pkgname}/catapult"
install -Dm755 "${srcdir}/catapult.sh" "${pkgdir}/usr/bin/catapult"
}Last edited by ArMor007 (2022-03-21 12:15:07)
Offline
Need to add options=('!strip') I guess...
Offline
That can happen if you have custom settings in makepkg.conf .
Please add --log to the makepkg command and post the content of the logfiles that creates.
Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Offline
Need to add options=('!strip') I guess...
That fixed the issue.
Offline