blob: 62daacd656e13f39dfca7ce0a8814ccd48a67078 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/mkpkg
# description: Access control list library
# url: https://savannah.nongnu.org/projects/acl
name=acl
version=2.4.0
release=1
depends=(attr)
makedeps=()
source=(https://download.savannah.gnu.org/releases/acl/acl-$version.tar.xz)
sha256sums=(
"e661131456d2708a01c614a0f400e11d7d1bfaeb6f3e74b75bb980b72f0161a3"
)
build() {
cd acl-$version
./configure \
--prefix=/ \
--libdir=/lib \
--includedir=/include \
--bindir=/bin \
--mandir=/usr/share/man \
--disable-static \
--disable-nls
make
make DESTDIR=$PKG install
# Remove docs
rm -rf $PKG/share
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|