summaryrefslogtreecommitdiff
path: root/extra/di/PKGBUILD
blob: 284d613c1bc08202ce2744fbd49b898caf51e4e4 (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
# $Id: PKGBUILD 171054 2012-11-15 23:33:28Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>

pkgname=di
pkgver=4.33
pkgrel=1
pkgdesc="A disk information utility, displaying everything (and more) that your df command does"
arch=('i686' 'x86_64')
url="http://www.gentoo.com/di/"
license=('ZLIB')
depends=('glibc')
source=(http://www.gentoo.com/di/${pkgname}-${pkgver}.tar.gz)
sha1sums=('c6f754c3a93845deef7255682fbecd1882a3ddf2')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  sed -i 's|error|//error|' C/di.h
  sed -i '11i\#include <string.h>' C/di.h
  make
}

package() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  make INSTALL_DIR="${pkgdir}/usr" install
  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}