mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added extra/foobillard++
This commit is contained in:
parent
cb8bf0d3e1
commit
ac637d847d
1 changed files with 46 additions and 0 deletions
46
extra/foobillard++/PKGBUILD
Normal file
46
extra/foobillard++/PKGBUILD
Normal file
|
@ -0,0 +1,46 @@
|
|||
# $Id$
|
||||
# Maintainer: Eric Bélanger <eric@archlinux.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - disable fast math
|
||||
|
||||
pkgname=foobillard++
|
||||
pkgver=3.42beta
|
||||
pkgrel=5
|
||||
pkgdesc="An OpenGL billiard game"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://foobillardplus.sourceforge.net/"
|
||||
license=('GPL2')
|
||||
depends=('freetype2' 'libpng' 'glu' 'sdl_net' 'sdl_mixer')
|
||||
makedepends=('mesa')
|
||||
replaces=('foobillard')
|
||||
source=(http://downloads.sourceforge.net/foobillardplus/foobillardplus-${pkgver}.tar.gz)
|
||||
sha1sums=('51507efab0f595cfff26149003faf669c0a42f32')
|
||||
|
||||
prepare() {
|
||||
cd foobillardplus-${pkgver}
|
||||
sed -i 's|/opt/foobillardplus/bin/||' foobillardplus.desktop
|
||||
sed -i 's|/opt/foobillardplus/||' foobillardplus.desktop
|
||||
}
|
||||
|
||||
build() {
|
||||
cd foobillardplus-${pkgver}
|
||||
aclocal --force
|
||||
autoconf -f
|
||||
autoheader -f
|
||||
automake -a -c -f
|
||||
./configure --prefix=/usr/share --disable-fastmath
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd foobillardplus-${pkgver}
|
||||
make DESTDIR="${pkgdir}" datadir="${pkgdir}/usr/share/foobillardplus/data" \
|
||||
prefix="${pkgdir}/usr/share" install
|
||||
|
||||
install -d "${pkgdir}"/usr/{bin,share/{applications,pixmaps}}
|
||||
mv "${pkgdir}"/usr/share/{AUTHORS,COPYING,ChangeLog,INSTALL,README,TODO} "${pkgdir}/usr/share/foobillardplus"
|
||||
mv "${pkgdir}"/usr/share/foobillardplus.desktop "${pkgdir}"/usr/share/applications
|
||||
mv "${pkgdir}"/usr/share/foobillardplus.{png,xbm} "${pkgdir}"/usr/share/pixmaps
|
||||
ln -s /usr/share/foobillardplus/bin/foobillardplus "${pkgdir}"/usr/bin/foobillardplus
|
||||
}
|
Loading…
Reference in a new issue