mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 18:57:48 +08:00
29 lines
703 B
Bash
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
|
|
}
|