mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 14:47:15 +08:00
e46c7bdb0d
- other rebuilds might be needed
34 lines
867 B
Bash
34 lines
867 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.7
|
|
pkgrel=2
|
|
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' 'libpng')
|
|
source=(http://ffmpegthumbnailer.googlecode.com/files/$pkgname-$pkgver.tar.gz)
|
|
options=(!libtool)
|
|
sha1sums=('b8f5371aa995fefd1fb75e306e8cd76e8c9f3a73')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|