diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/units |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/units')
-rw-r--r-- | community/units/PKGBUILD | 24 | ||||
-rw-r--r-- | community/units/units.install | 18 |
2 files changed, 42 insertions, 0 deletions
diff --git a/community/units/PKGBUILD b/community/units/PKGBUILD new file mode 100644 index 000000000..7cfab5582 --- /dev/null +++ b/community/units/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 40288 2011-02-22 18:18:55Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Jeff Mickey <jeff@archlinux.org> +# Contributor: Steve Sansom <snsansom@gmail.com> + +pkgname=units +pkgver=1.88 +pkgrel=2 +pkgdesc="converts between different units" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/units/units.html" +depends=('readline') +license=("GPL") +options=('!makeflags') +install=units.install +source=(http://ftp.gnu.org/gnu/units/$pkgname-$pkgver.tar.gz) +md5sums=('9b2ee6e7e0e9c62741944cf33fc8a656') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr --datadir=/usr/share/units + make + make DESTDIR=$pkgdir install +} diff --git a/community/units/units.install b/community/units/units.install new file mode 100644 index 000000000..7eae54377 --- /dev/null +++ b/community/units/units.install @@ -0,0 +1,18 @@ +infodir=/usr/share/info +filelist=(units.info) + +post_install() { + for file in ${filelist[@]}; do + install-info $infodir/$file $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + for file in ${filelist[@]}; do + install-info --delete $infodir/$file $infodir/dir 2> /dev/null + done +} |