Date: Thursday, November 17, 2022 @ 17:43:03
Author: heftig
Revision: 1349381
1.6.2-2: enable debug
Modified:
lib32-libunwind/trunk/PKGBUILD
----------+
PKGBUILD | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2022-11-17 17:36:23 UTC (rev 1349380)
+++ PKGBUILD 2022-11-17 17:43:03 UTC (rev 1349381)
@@ -5,13 +5,13 @@
_pkgbasename=libunwind
pkgname=lib32-libunwind
pkgver=1.6.2
-pkgrel=1
+pkgrel=2
pkgdesc="Portable and efficient C programming interface (API) to determine the
call-chain of a program (32-bit)"
arch=('x86_64')
url="https://www.nongnu.org/libunwind/"
license=('GPL')
-makedepends=('gcc-multilib')
depends=('lib32-gcc-libs' 'libunwind' 'lib32-xz')
+options=('debug')
source=(https://download.savannah.gnu.org/releases/$_pkgbasename/$_pkgbasename-$pkgver.tar.gz{,.sig})
sha512sums=('1d17dfb14f99a894a6cda256caf9ec481c14068aaf8f3a85fa3befa7c7cca7fca0f544a91a3a7c2f2fc55bab19b06a67ca79f55ac9081151d94478c7f611f8f7'
'SKIP')
@@ -39,7 +39,7 @@
make check || :
}
-package_lib32-libunwind() {
+package() {
cd $_pkgbasename-$pkgver
make DESTDIR="$pkgdir" install
@@ -46,3 +46,5 @@
# this build only provides multilib binary for x86 on x86_64 , remove all
includes for other architectures
find "$pkgdir"/usr/include/*.h -not -name "*x86*" -exec rm -f {} \;
}
+
+# vim:set sw=2 sts=-1 et: