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.
archrelease: copy trunk to testing-x86_64
git-svn-id: file:///srv/repos/svn-packages/svn@382614 eb2447ed-0c53-47e4-bac8-5bc4a241df78
- Loading branch information
eworm
committed
May 7, 2020
1 parent
c211282
commit 111d4f2
Showing
1 changed file
with
34 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Maintainer: Thomas Bächler <[email protected]> | ||
|
||
pkgname=acl | ||
pkgver=2.2.53 | ||
pkgrel=3 | ||
pkgdesc='Access control list utilities, libraries and headers' | ||
arch=('x86_64') | ||
url='https://savannah.nongnu.org/projects/acl' | ||
license=('LGPL') | ||
depends=('attr') | ||
replaces=('xfsacl') | ||
provides=('xfsacl' 'libacl.so') | ||
conflicts=('xfsacl') | ||
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 | ||
|
||
./configure \ | ||
--libdir=/usr/lib \ | ||
--libexecdir=/usr/lib \ | ||
--prefix=/usr | ||
make | ||
} | ||
|
||
package() { | ||
cd $pkgname-$pkgver | ||
|
||
make DESTDIR="${pkgdir}" install | ||
} |