1
0
mirror of https://github.com/bertptrs/aur.git synced 2025-12-25 20:40:32 +01:00

upgpkg: bloaty 1.1-3

Fix license record, remove unused !emptydirs, comply with Arch cmake
guidelines
This commit is contained in:
2024-03-24 17:33:00 +01:00
parent 263f7f2d3d
commit fb533451af
2 changed files with 13 additions and 17 deletions

View File

@@ -1,17 +1,16 @@
pkgbase = bloaty pkgbase = bloaty
pkgdesc = a size profiler for binaries pkgdesc = a size profiler for binaries
pkgver = 1.1 pkgver = 1.1
pkgrel = 2 pkgrel = 3
url = https://github.com/google/bloaty url = https://github.com/google/bloaty
arch = x86_64 arch = x86_64
license = Apache license = Apache-2.0
makedepends = cmake makedepends = cmake
depends = gcc-libs depends = gcc-libs
depends = re2 depends = re2
depends = protobuf depends = protobuf
depends = capstone depends = capstone
depends = abseil-cpp depends = abseil-cpp
options = !emptydirs
source = https://github.com/google/bloaty/releases/download/v1.1/bloaty-1.1.tar.bz2 source = https://github.com/google/bloaty/releases/download/v1.1/bloaty-1.1.tar.bz2
source = https://src.fedoraproject.org/rpms/bloaty/raw/rawhide/f/bloaty-1.1-absl.patch source = https://src.fedoraproject.org/rpms/bloaty/raw/rawhide/f/bloaty-1.1-absl.patch
sha256sums = a308d8369d5812aba45982e55e7c3db2ea4780b7496a5455792fb3dcba9abd6f sha256sums = a308d8369d5812aba45982e55e7c3db2ea4780b7496a5455792fb3dcba9abd6f

View File

@@ -1,14 +1,13 @@
# Maintainer: Bert Peters <bert@bertptrs.nl> # Maintainer: Bert Peters <bert@bertptrs.nl>
pkgname=bloaty pkgname=bloaty
pkgver=1.1 pkgver=1.1
pkgrel=2 pkgrel=3
pkgdesc="a size profiler for binaries" pkgdesc="a size profiler for binaries"
arch=(x86_64) arch=(x86_64)
url="https://github.com/google/bloaty" url="https://github.com/google/bloaty"
license=('Apache') license=('Apache-2.0')
depends=(gcc-libs re2 protobuf capstone abseil-cpp) depends=(gcc-libs re2 protobuf capstone abseil-cpp)
makedepends=(cmake) makedepends=(cmake)
options=(!emptydirs)
source=( source=(
"https://github.com/google/bloaty/releases/download/v$pkgver/bloaty-$pkgver.tar.bz2" "https://github.com/google/bloaty/releases/download/v$pkgver/bloaty-$pkgver.tar.bz2"
"https://src.fedoraproject.org/rpms/bloaty/raw/rawhide/f/bloaty-1.1-absl.patch") "https://src.fedoraproject.org/rpms/bloaty/raw/rawhide/f/bloaty-1.1-absl.patch")
@@ -16,27 +15,25 @@ sha256sums=('a308d8369d5812aba45982e55e7c3db2ea4780b7496a5455792fb3dcba9abd6f'
'96cc0528f6464b03d0e68060ff2d24c36624c7d3991cee142df8d3d27cefeb51') '96cc0528f6464b03d0e68060ff2d24c36624c7d3991cee142df8d3d27cefeb51')
prepare() { prepare() {
cd "$pkgname-$pkgver" cd "$pkgname-$pkgver"
# Abseil compatibility patch borrowed from Fedora # Abseil compatibility patch borrowed from Fedora
patch -p1 < "../bloaty-1.1-absl.patch" patch -p1 < "../bloaty-1.1-absl.patch"
} }
build() { build() {
cd "$pkgname-$pkgver" cd "$pkgname-$pkgver"
# Bloaty doesn't allow using an empty build type. cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=None \
# Unfortunately, this breaks RELRO, so we need to fix that -DCMAKE_EXE_LINKER_FLAGS_RELEASE="$LDFLAGS" -Wno-dev
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \ make
-DCMAKE_EXE_LINKER_FLAGS_RELEASE="$LDFLAGS" -Wno-dev .
make
} }
# Not included in the source tarbal, use the git release instead # Not included in the source tarbal, use the git release instead
# check() { # check() {
# cd "$pkgname-$pkgver" # cd "$pkgname-$pkgver"
# make test # make test
# } # }
package() { package() {
cd "$pkgname-$pkgver" cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install make DESTDIR="$pkgdir/" install
} }