Date: Saturday, March 25, 2023 @ 23:13:15
Author: eworm
Revision: 472034
archrelease: copy trunk to testing-x86_64
Added:
attr/repos/testing-x86_64/
attr/repos/testing-x86_64/PKGBUILD
(from rev 472033, attr/trunk/PKGBUILD)
attr/repos/testing-x86_64/keys/
----------+
PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
Copied: attr/repos/testing-x86_64/PKGBUILD (from rev 472033,
attr/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2023-03-25 23:13:15 UTC (rev 472034)
@@ -0,0 +1,44 @@
+# Maintainer: Thomas Bächler <[email protected]>
+
+pkgname=attr
+pkgver=2.5.1
+pkgrel=3
+pkgdesc='Extended attribute support library for ACL support'
+arch=('x86_64')
+url='https://savannah.nongnu.org/projects/attr'
+license=('LGPL')
+depends=('glibc')
+makedepends=('gettext')
+replaces=('xfsattr')
+provides=('xfsattr' 'libattr.so')
+conflicts=('xfsattr')
+backup=('etc/xattr.conf')
+validpgpkeys=('600CD204FBCEA418BD2CA74F154343260542DF34' # Brandon Philips
<[email protected]>
+ 'B902B5271325F892AC251AD441633B9FE837F581' # Frysinger
<[email protected]>
+ '259B3792B3D6D319212CC4DCD5BF9FEB0313653A') # Andreas
Gruenbacher <[email protected]>
+source=("https://download.savannah.gnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('db448a626f9313a1a970d636767316a8da32aede70518b8050fa0de7947adc32'
+ 'SKIP')
+
+prepare() {
+ # remove the nfs entries from /etc/xattr.conf
+ # http://lists.gnu.org/archive/html/bug-coreutils/2019-03/msg00008.html
+ sed -i '/nfs/d' $pkgname-$pkgver/xattr.conf
+}
+
+build() {
+ cd $pkgname-$pkgver
+
+ ./configure \
+ --libdir=/usr/lib \
+ --libexecdir=/usr/lib \
+ --prefix=/usr \
+ --sysconfdir=/etc
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+
+ make DESTDIR="${pkgdir}" install
+}