mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
945 B
Bash
26 lines
945 B
Bash
# $Id: PKGBUILD 18328 2008-11-04 05:12:23Z eric $
|
|
# Maintainer: Eric Belanger <eric@archlinux.org>
|
|
# Contributor: damir <damir@archlinux.org>
|
|
|
|
pkgname=fyre
|
|
pkgver=1.0.1
|
|
pkgrel=3
|
|
pkgdesc="Rendering of the Peter de Jong map"
|
|
arch=("i686" "x86_64")
|
|
url="http://fyre.navi.cx/"
|
|
license=('GPL')
|
|
depends=('openexr>=1.6' 'libglade' 'gnet' 'shared-mime-info')
|
|
install=${pkgname}.install
|
|
source=(http://flapjack.navi.cx/releases/fyre/fyre-${pkgver}.tar.gz)
|
|
md5sums=('44d5830c527325c1ee6fa6ea92b4ba03')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make prefix=${pkgdir}/usr install || return 1
|
|
rm ${pkgdir}/usr/share/mime/{XMLnamespaces,globs,magic,aliases,subclasses} || return 1
|
|
rm ${pkgdir}/usr/share/mime/{generic-icons,globs2,icons,treemagic,types} || return 1
|
|
rm ${pkgdir}/usr/share/mime/mime.cache || return 1
|
|
rm ${pkgdir}/usr/share/icons/hicolor/icon-theme.cache || return 1
|
|
}
|