forked from archlinux/svntogit-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new upstream release git-svn-id: file:///srv/repos/svn-packages/svn@327231 eb2447ed-0c53-47e4-bac8-5bc4a241df78
- Loading branch information
eworm
committed
Jun 19, 2018
1 parent
f6db144
commit 86deda3
Showing
1 changed file
with
15 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,30 +2,34 @@ | |
# Maintainer: Thomas Bächler <[email protected]> | ||
|
||
pkgname=acl | ||
pkgver=2.2.52 | ||
pkgrel=4 | ||
pkgdesc="Access control list utilities, libraries and headers" | ||
pkgver=2.2.53 | ||
pkgrel=1 | ||
pkgdesc='Access control list utilities, libraries and headers' | ||
arch=('x86_64') | ||
url="http://savannah.nongnu.org/projects/acl" | ||
url='http://savannah.nongnu.org/projects/acl' | ||
license=('LGPL') | ||
depends=('attr>=2.4.46') | ||
depends=('attr') | ||
replaces=('xfsacl') | ||
provides=('xfsacl') | ||
conflicts=('xfsacl') | ||
source=(https://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.src.tar.gz{,.sig}) | ||
validpgpkeys=('600CD204FBCEA418BD2CA74F154343260542DF34') # Brandon Philips | ||
sha256sums=('179074bb0580c06c4b4137be4c5a92a701583277967acdb5546043c7874e0d23' | ||
validpgpkeys=('600CD204FBCEA418BD2CA74F154343260542DF34' # Brandon Philips <[email protected]> | ||
'B902B5271325F892AC251AD441633B9FE837F581') # Frysinger <[email protected]> | ||
source=("https://download.savannah.gnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig}) | ||
sha256sums=('06be9865c6f418d851ff4494e12406568353b891ffe1f596b34693c387af26c7' | ||
'SKIP') | ||
|
||
build() { | ||
cd $pkgname-$pkgver | ||
|
||
export INSTALL_USER=root INSTALL_GROUP=root | ||
./configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib | ||
./configure \ | ||
--libdir=/usr/lib \ | ||
--libexecdir=/usr/lib \ | ||
--prefix=/usr | ||
make | ||
} | ||
|
||
package() { | ||
cd $pkgname-$pkgver | ||
make DIST_ROOT="$pkgdir" install install-lib install-dev | ||
|
||
make DESTDIR="${pkgdir}" install | ||
} |