mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:57:14 +08:00
24 lines
431 B
Bash
24 lines
431 B
Bash
|
|
pkgname=movit
|
|
pkgver=1.3.2
|
|
pkgrel=1
|
|
pkgdesc="The modern video toolkit"
|
|
arch=(x86_64)
|
|
url="http://movit.sesse.net/"
|
|
license=(GPL)
|
|
depends=(fftw libepoxy)
|
|
makedepends=(eigen3 gtest sdl2)
|
|
source=("https://movit.sesse.net/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('dadc7e1695ac784a0233df6b2a1a2b8b')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|