mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 02:04:37 +08:00
37 lines
833 B
Bash
37 lines
833 B
Bash
# Contributor: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
# Maintainer: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=frei0r-plugins
|
|
pkgver=1.4
|
|
pkgrel=4
|
|
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' 'opencv')
|
|
makedepends=('doxygen')
|
|
options=('!emptydirs')
|
|
source=(https://distfiles.macports.org/frei0r-plugins/frei0r-plugins-1.4.tar.gz
|
|
as-needed.patch)
|
|
md5sums=('202375d1bcb545c1b6eb8f34e0260ec5'
|
|
'49bab3a8700da8d8ffb6369423fa356d')
|
|
|
|
prepare() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
patch -Np0 -i ../as-needed.patch
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|