mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 14:47:15 +08:00
30 lines
830 B
Bash
30 lines
830 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=ffmpegthumbnailer
|
|
pkgver=2.0.6
|
|
pkgrel=1
|
|
pkgdesc="Lightweight video thumbnailer that can be used by file managers."
|
|
url="http://code.google.com/p/ffmpegthumbnailer/"
|
|
license=('GPL2')
|
|
arch=('i686' 'x86_64')
|
|
depends=('ffmpeg' 'libjpeg>=8' 'libpng')
|
|
source=(http://ffmpegthumbnailer.googlecode.com/files/$pkgname-$pkgver.tar.gz)
|
|
options=(!libtool)
|
|
md5sums=('5003ceaadc1c5a1be1dbb34739a12bab')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|
|
|