core/libgoom2/PKGBUILD
2016-01-16 01:24:29 +00:00

29 lines
703 B
Bash

# Arch contributor: https://projects.archlinux.org/svntogit/community.git/plain/trunk/PKGBUILD?h=packages/libgoom2
pkgname=libgoom2
pkgver=2k4
pkgrel=1
pkgdesc="Shared library part of the Goom visualization plugin"
arch=('i686' 'x86_64')
url="http://www.fovea.cc/?page=details_produits&id=goom"
license=('LGPL')
depends=('glibc')
options=('!emptydirs')
source=("http://downloads.sourceforge.net/project/goom/goom2k4/0/goom-2k4-0-src.tar.gz")
md5sums=('8100dd07e0c6784fdf079eeaa53a5c7f')
build() {
cd "${srcdir}/goom2k4-0"
./configure --prefix=/usr \
--without-xmms \
--without-sdl
make
}
package() {
cd "${srcdir}/goom2k4-0"
make DESTDIR="${pkgdir}" install
}