summaryrefslogtreecommitdiffstats
path: root/libattr/Pkgfile
blob: d54a8e577b03548631d8e0f3675c2936745297f6 (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
# Description: Attributs étendus pour le support de la librairie ACL
# URL: http://oss.sgi.com/projects/xfs/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on:

name=libattr
version=2.4.46
release=1
source=(http://download.savannah.gnu.org/releases/attr/attr-2.4.46.src.tar.gz)

build() {
	cd attr-$version
	#autoconf
	./configure --prefix=/usr
	#sed -i -e 's/man2//g' man/Makefile
	make
	make prefix=$PKG/usr install install-lib install-dev

	cd $PKG

	mkdir lib
	mv -v usr/lib/libattr.so* lib/
	ln -sv ../../lib/libattr.so.1 usr/lib/libattr.so
	mv -v usr/libexec/libattr.{a,la} usr/lib/
	rm -r usr/libexec
}