Check-in [3e742f1756]
Overview
Comment:Fixed issue where libraries for libcap were located in wrong place
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | packages
Files: files | file ages | folders
SHA1: 3e742f175694337d6e9a43691c2a202c19a2cf19
User & Date: rkeene on 2014-11-12 08:39:09
Other Links: branch diff | manifest | tags
Context
2014-11-12
09:29
Updated to search in requested headers last rather than first, as if they were system headers check-in: 6fac0b6f10 user: rkeene tags: packages
08:39
Fixed issue where libraries for libcap were located in wrong place check-in: 3e742f1756 user: rkeene tags: packages
08:29
Added libcap package check-in: 464c2fea8f user: rkeene tags: packages
Changes

Modified pkgs/libcap from [d39ce82398] to [832b31b155].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /usr/bin/env bash

version='2.24'
url="http://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-${version}.tar.xz"
domain=core.appfs.rkeene.org
sha256='cee4568f78dc851d726fc93f25f4ed91cc223b1fe8259daa4a77158d174e6c65'
require=(attr)

function configure() {
	:
}

function build() {
	local dynamiclinker

	dynamiclinker="$(echo " ${LDFLAGS} " | sed 's@^.* -Wl,--dynamic-linker,@@;s@ .*$@@')"

	make prefix="${prefix}" lib="${dynamiclinker}"
}

function install() {
	make prefix="${prefix}" lib="${dynamiclinker}" DESTDIR="${destdir}" RAISE_SETFCAP='no' install 
}













<
<
<
<
|



|

1
2
3
4
5
6
7
8
9
10
11
12
13




14
15
16
17
18
19
#! /usr/bin/env bash

version='2.24'
url="http://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-${version}.tar.xz"
domain=core.appfs.rkeene.org
sha256='cee4568f78dc851d726fc93f25f4ed91cc223b1fe8259daa4a77158d174e6c65'
require=(attr)

function configure() {
	:
}

function build() {




	make prefix="${prefix}" lib='lib'
}

function install() {
	make prefix="${prefix}" lib='lib' DESTDIR="${destdir}" RAISE_SETFCAP='no' install 
}