summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 90ce61850be46742206fa05fdad9fc3a59c630d7 (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
# Maintainer: Gavin Lloyd <gavinhungry@gmail.com>
# Contributor: Archlive <http://archlive-pkg.googlecode.com>

pkgname=fatelf-utils
_pkgname=fatelf
pkgver=111.5e7e594b70fa
pkgrel=2
pkgdesc='Utils for FatELF - Universal Binaries for Linux'
arch=('i686' 'x86_64')
url='https://www.icculus.org/fatelf/'
license=('GPL2')
makedepends=('cmake')
source=('hg+https://hg.icculus.org/icculus/fatelf')
sha256sums=('SKIP')

pkgver() {
  cd "${srcdir}/${_pkgname}"
  echo $(hg identify -n).$(hg identify -i)
}

build() {
  cd "${srcdir}/${_pkgname}"
  CFLAGS+=" -O0"
  cmake .
  make
}

package() {
  cd "${srcdir}/${_pkgname}"

  sed -i "s|/usr/local|/usr|g" cmake_install.cmake
  make DESTDIR="${pkgdir}" install

  mkdir -p "${pkgdir}/usr/share/doc/${_pkgname}/"
  install -m644 docs/*.txt "${pkgdir}/usr/share/doc/${_pkgname}/"
}