[arch-commits] Commit in libnl/repos (staging-x86_64 staging-x86_64/PKGBUILD)
Felix Yan
felixonmars at archlinux.org
Wed Nov 13 17:27:37 UTC 2019
Date: Wednesday, November 13, 2019 @ 17:27:37
Author: felixonmars
Revision: 368357
archrelease: copy trunk to staging-x86_64
Added:
libnl/repos/staging-x86_64/
libnl/repos/staging-x86_64/PKGBUILD
(from rev 368356, libnl/trunk/PKGBUILD)
----------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
Copied: libnl/repos/staging-x86_64/PKGBUILD (from rev 368356, libnl/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-11-13 17:27:37 UTC (rev 368357)
@@ -0,0 +1,34 @@
+# Maintainer: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: Thomas Bächler <thomas at archlinux.org>
+
+pkgname=libnl
+pkgver=3.5.0
+pkgrel=2
+pkgdesc='Library for applications dealing with netlink sockets'
+arch=(x86_64)
+url='https://github.com/thom311/libnl/'
+license=(GPL)
+depends=(glibc)
+backup=(etc/libnl/classid etc/libnl/pktloc)
+source=(https://github.com/thom311/libnl/releases/download/libnl${pkgver//./_}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('352133ec9545da76f77e70ccb48c9d7e5324d67f6474744647a7ed382b5e05fa'
+ 'SKIP')
+validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --sbindir=/usr/bin \
+ --disable-static
+ make
+}
+
+check() {
+ make -C $pkgname-$pkgver check
+}
+
+package() {
+ make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}
More information about the arch-commits
mailing list