1
0
mirror of https://github.com/bertptrs/aur.git synced 2025-12-27 21:40:31 +01:00

Update to v1.1.

Now a lot smaller since it uses system dependencies.
This commit is contained in:
2020-05-24 13:01:53 +02:00
parent 3d100f43e4
commit b853017f59
2 changed files with 11 additions and 11 deletions

View File

@@ -1,16 +1,16 @@
# Maintainer: Bert Peters <bert@bertptrs.nl>
pkgname=bloaty
pkgver=1.0
pkgrel=2
pkgver=1.1
pkgrel=1
pkgdesc="a size profiler for binaries"
arch=(x86_64)
url="https://github.com/google/bloaty"
license=('Apache')
depends=(gcc-libs)
depends=(gcc-libs re2 protobuf capstone)
makedepends=(cmake)
options=(!emptydirs)
source=("https://github.com/google/bloaty/releases/download/v$pkgver/bloaty-$pkgver.tar.bz2")
sha256sums=('e1cf9830ba6c455218fdb50e7a8554ff256da749878acfaf77c032140d7ddde0')
sha256sums=('a308d8369d5812aba45982e55e7c3db2ea4780b7496a5455792fb3dcba9abd6f')
build() {
cd "$pkgname-$pkgver"
@@ -30,7 +30,4 @@ build() {
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
# Prevent package conflicts
rm -r "$pkgdir/usr/"{include,bin/protoc*,lib64,lib/*.a,lib/pkgconfig/protobuf*,lib/cmake/protobuf}
}