opt/prelink/Pkgfile

25 lines
556 B
Plaintext
Raw Normal View History

2012-03-04 10:35:09 +01:00
# Description: Modifies ELFs to avoid runtime symbol resolutions resulting in faster load times.
# URL: http://people.redhat.com/jakub/prelink/
2014-11-10 13:25:50 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: elfutils
2012-03-04 10:35:09 +01:00
name=prelink
2013-11-20 13:24:09 +01:00
version=20130503
2012-03-04 10:35:09 +01:00
release=1
source=(http://people.redhat.com/jakub/prelink/$name-$version.tar.bz2
prelink.conf)
build() {
cd $name
./configure \
--prefix=/usr \
2018-01-31 09:22:03 +01:00
--mandir=/usr/share/man \
2012-03-04 10:35:09 +01:00
--sysconfdir=/etc \
--disable-debug
make
make DESTDIR=$PKG install
install -D $SRC/prelink.conf $PKG/etc/prelink.conf
}