mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
28 lines
750 B
Bash
28 lines
750 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=frei0r-plugins
|
|
pkgver=1.1.22
|
|
pkgrel=1
|
|
pkgdesc="frei0r is a minimalistic plugin API for video sources and filters."
|
|
arch=(i686 x86_64)
|
|
url="http://www.piksel.org/frei0r"
|
|
license=('GPL')
|
|
depends=('gcc-libs' 'gavl>=1.0.0')
|
|
source=(http://propirate.net/frei0r/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('8123893c67fc5ce01ddcb09853d47ed4')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
}
|