mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
30 lines
816 B
Bash
30 lines
816 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributors from Arch: Lukas Fleischer <archlinux at cryptocrack dot de>
|
|
# Robert Emil Berge <filoktetes@linuxophic.org>
|
|
# Mateusz Herych <heniekk@gmail.com>
|
|
|
|
pkgname=gavl
|
|
pkgver=1.4.0
|
|
pkgrel=3
|
|
pkgdesc="A low level library, upon which multimedia APIs can be built."
|
|
arch=('x86_64')
|
|
url="http://gmerlin.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('glibc' 'libpng')
|
|
source=(http://downloads.sourceforge.net/sourceforge/gmerlin/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('2752013a817fbc43ddf13552215ec2c0')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr \
|
|
--without-doxygen \
|
|
--with-cpuflags=none
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|