summaryrefslogtreecommitdiff
path: root/community/prelink/PKGBUILD
blob: a302459ee18052dbe5c9395086f7558eb430affb (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
# $Id: PKGBUILD 90944 2013-05-16 03:44:23Z eric $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
# Contributor: Rouslan Solomakhin <rouslan@localnet.com>

pkgname=prelink
pkgver=20111012
pkgrel=2
pkgdesc='ELF prelinking utility to speed up dynamic linking.'
arch=('i686' 'x86_64' 'mips64el')
url='http://people.redhat.com/jakub/prelink/'
license=('GPL')
depends=('elfutils')
backup=('etc/prelink.conf')
source=("http://people.redhat.com/jakub/prelink/${pkgname}-${pkgver}.tar.bz2"
        'prelink.conf'
        'arch-x86_64-dynamic_linker.patch')
md5sums=('f5aaf347432d677c293e5e3399ba4fdf'
         '0793ed49e9b31c125cba4d936c333cf6'
         'b347580536e078b34c547742d36a3e9d')

prepare() {
  cd ${pkgname}
  patch -Np0 -i ../arch-x86_64-dynamic_linker.patch
}

build() {
  cd ${pkgname}
  ./configure --prefix=/usr --mandir=/usr/share/man --sbin=/usr/bin --build=$CHOST
  make
}

package() {
  cd ${pkgname}
  make DESTDIR="${pkgdir}" install
  install -Dm0644 "${srcdir}/prelink.conf" "${pkgdir}/etc/prelink.conf"
}