diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/ibam/PKGBUILD | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/ibam/PKGBUILD')
-rw-r--r-- | community/ibam/PKGBUILD | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/community/ibam/PKGBUILD b/community/ibam/PKGBUILD deleted file mode 100644 index 6f72fb3dc..000000000 --- a/community/ibam/PKGBUILD +++ /dev/null @@ -1,34 +0,0 @@ -# $Id: PKGBUILD 65562 2012-02-21 08:57:40Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Kessia 'even' Pinheiro <kessiapinheiro at gmail.com> -# Contributor: Penguin <TGates81.at.gmail.dot.com> - -pkgname=ibam -pkgver=0.5.2 -pkgrel=5 -pkgdesc="An intelligent battery monitor" -arch=('i686' 'x86_64') -url="http://ibam.sourceforge.net/" -license=('GPL') -depends=('gcc-libs') -makedepends=('sed' 'make') -optdepends=('gnuplot: graphs support') -install="ibam.install" -source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz" - ibam-0.5.2-sysfs.patch) -md5sums=('2d5222ff504dd19e7c1ea8acc2f13cf5' - 'c3aafebd5ad9159c89f71beab4a0f414') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - install -m0755 -d ${pkgdir}/usr/bin - - sed -i \ - -e "s|/local/bin|/bin|g" \ - -e "s|^CFLAGS=-O3|CFLAGS=${CFLAGS}|g" \ - Makefile - patch -p1 <$srcdir/ibam-0.5.2-sysfs.patch - - make - install -m0755 -D ${srcdir}/${pkgname}-${pkgver}/ibam ${pkgdir}/usr/bin/ibam -} |