# Maintainer: Thomas Dziedzic < gostrc at gmail > # Contributor: Slash pkgname=nut pkgver=16.13 pkgrel=2 pkgdesc='Records what you eat and analyzes your meals for nutrient levels in terms of the Daily Value or DV which is the standard for food labeling in the US.' url='http://nut.sourceforge.net/' license=('GPL') arch=('i686' 'x86_64' 'mips64el') source=("http://downloads.sourceforge.net/project/nut/nut/${pkgver}/nut-${pkgver}.tar.gz") md5sums=('58f29a4510438ce4bd0622cd5971959c') build() { cd ${pkgname}-${pkgver} # change install path to /usr instead of /usr/local sed \ -e 's#/local##' \ -i Makefile make } package() { cd ${pkgname}-${pkgver} # Install Data install -d ${pkgdir}/usr/lib/${pkgname} install -m644 raw.data/* \ ${pkgdir}/usr/lib/${pkgname}/ # Install Binary install -D ${pkgname} \ ${pkgdir}/usr/bin/${pkgname} # Install Man Page install -D -m644 ${pkgname}.1 \ ${pkgdir}/usr/share/man/man1/${pkgname}.1 }