[arch-commits] Commit in bzip2/trunk (PKGBUILD bzip2.pc)
Levente Polyak
anthraxx at archlinux.org
Mon Nov 2 21:04:57 UTC 2020
Date: Monday, November 2, 2020 @ 21:04:57
Author: anthraxx
Revision: 399184
upgpkg: bzip2 1.0.8-4: include pkgconfig file and respect CPPFLAGS
Added:
bzip2/trunk/bzip2.pc
Modified:
bzip2/trunk/PKGBUILD
----------+
PKGBUILD | 26 ++++++++++++++++++--------
bzip2.pc | 11 +++++++++++
2 files changed, 29 insertions(+), 8 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2020-11-02 20:59:43 UTC (rev 399183)
+++ PKGBUILD 2020-11-02 21:04:57 UTC (rev 399184)
@@ -1,24 +1,33 @@
# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: Judd <jvinet at zeroflux.org>
+# Contributor: Judd <jvinet at zeroflux.org>
pkgname=bzip2
pkgver=1.0.8
-pkgrel=3
+pkgrel=4
pkgdesc="A high-quality data compression program"
arch=('x86_64')
-license=('custom')
+license=('BSD')
url="https://sourceware.org/bzip2/"
depends=('glibc' 'sh')
-source=(https://sourceware.org/pub/bzip2/$pkgname-$pkgver.tar.gz{,.sig})
+provides=('libbz2.so')
+source=(https://sourceware.org/pub/bzip2/$pkgname-$pkgver.tar.gz{,.sig}
+ bzip2.pc)
sha256sums=('ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269'
- 'SKIP')
+ 'SKIP'
+ 'eca9d8cd6376df1fb5442667c603032023fb21d8d183684550da0b96ade39654')
validpgpkeys=('EC3CFE88F6CA0788774F5C1D1AA44BE649DE760A') # Mark Wielaard <mark at klomp.org>
-
+
+prepare() {
+ cd $pkgname-$pkgver
+ cp ../bzip2.pc bzip2.pc
+ sed "s|@VERSION@|$pkgver|" -i bzip2.pc
+}
+
build() {
cd $pkgname-$pkgver
- make -f Makefile-libbz2_so CC="gcc $CFLAGS $LDFLAGS"
- make bzip2 bzip2recover CC="gcc $CFLAGS $LDFLAGS"
+ make -f Makefile-libbz2_so CC="gcc $CFLAGS $CPPFLAGS $LDFLAGS"
+ make bzip2 bzip2recover CC="gcc $CFLAGS $CPPFLAGS $LDFLAGS"
}
check() {
@@ -47,5 +56,6 @@
ln -sf bzip2.1 "$pkgdir"/usr/share/man/man1/bzcat.1
ln -sf bzip2.1 "$pkgdir"/usr/share/man/man1/bzip2recover.1
+ install -Dm644 bzip2.pc -t "$pkgdir"/usr/lib/pkgconfig
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/${pkgname}/LICENSE
}
Added: bzip2.pc
===================================================================
--- bzip2.pc (rev 0)
+++ bzip2.pc 2020-11-02 21:04:57 UTC (rev 399184)
@@ -0,0 +1,11 @@
+prefix=/usr
+exec_prefix=/usr
+bindir=${exec_prefix}/bin
+libdir=${exec_prefix}/lib
+includedir=${prefix}/include
+
+Name: bzip2
+Description: A file compression library
+Version: @VERSION@
+Libs: -L${libdir} -lbz2
+Cflags: -I${includedir}
More information about the arch-commits
mailing list