mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
64 lines
1.2 KiB
Bash
64 lines
1.2 KiB
Bash
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - disable LTO
|
|
# - set ARM targets for cargo fetch
|
|
|
|
pkgname=dump_syms
|
|
pkgver=2.2.0
|
|
pkgrel=1
|
|
pkgdesc="Symbol dumper for Firefox"
|
|
url="https://github.com/mozilla/dump_syms"
|
|
arch=(x86_64)
|
|
license=(
|
|
APACHE
|
|
MIT
|
|
)
|
|
depends=(gcc-libs)
|
|
makedepends=(
|
|
cargo
|
|
git
|
|
)
|
|
options=(!lto)
|
|
_commit=7cb5f5243f87c562a44259ecb79675ea07842a8f # tags/v2.2.0^0
|
|
source=("git+$url#commit=$_commit")
|
|
sha512sums=('SKIP')
|
|
|
|
# Use LTO
|
|
#export CARGO_PROFILE_RELEASE_LTO=true CARGO_PROFILE_RELEASE_CODEGEN_UNITS=1
|
|
|
|
# Use debug
|
|
export CARGO_PROFILE_RELEASE_DEBUG=2
|
|
|
|
case "$CARCH" in
|
|
armv7h) target=armv7-unknown-linux-gnueabihf ;;
|
|
aarch64) target=aarch64-unknown-linux-gnu ;;
|
|
esac
|
|
|
|
pkgver() {
|
|
cd $pkgname
|
|
git describe --tags | sed 's/^v//;s/[^-]*-g/r&/;s/-/+/g'
|
|
}
|
|
|
|
prepare() {
|
|
cd $pkgname
|
|
cargo fetch --locked --target $target
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname
|
|
cargo build --release --frozen --all-targets
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname
|
|
cargo test --release --frozen
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname
|
|
install -Dt "$pkgdir/usr/bin" target/release/dump_syms
|
|
install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE*
|
|
}
|
|
|
|
# vim:set sw=2 sts=-1 et:
|