blob: 6158259079e64de6caf47fbf9706a77e49157448 (
plain)
1 # Description: Modifies ELFs to avoid runtime symbol resolutions resulting in faster load times.
2 # URL: http://people.redhat.com/jakub/prelink/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: elfutils
5
6 name=prelink
7 version=20130503
8 release=1
9 source=(http://people.redhat.com/jakub/prelink/$name-$version.tar.bz2
10 prelink.conf)
11
12 build() {
13 cd $name
14
15 ./configure \
16 --prefix=/usr \
17 --mandir=/usr/share/man \
18 --sysconfdir=/etc \
19 --disable-debug
20
21 make
22 make DESTDIR=$PKG install
23 install -D $SRC/prelink.conf $PKG/etc/prelink.conf
24 }
|