mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 12:27:13 +08:00
30 lines
622 B
Bash
30 lines
622 B
Bash
# Maintainer: abveritas[at]chakra-project[dot]org>
|
|
|
|
|
|
pkgname=frei0r-plugins
|
|
pkgver=1.4
|
|
pkgrel=2
|
|
pkgdesc="frei0r is a minimalistic plugin API for video sources and filters."
|
|
arch=('x86_64')
|
|
url="http://www.piksel.org/frei0r"
|
|
license=('GPL')
|
|
depends=('gcc-libs' 'gavl>=1.0.0' 'opencv')
|
|
makedepends=('doxygen')
|
|
options=('!emptydirs')
|
|
source=("http://ftp.dyne.org/frei0r/releases/frei0r-plugins-$pkgver.tar.gz")
|
|
md5sums=('202375d1bcb545c1b6eb8f34e0260ec5')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|