mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 13:37:15 +08:00
29 lines
752 B
Bash
29 lines
752 B
Bash
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=handbrake-cli
|
|
pkgver=0.9.9
|
|
pkgrel=1
|
|
arch=('x86_64')
|
|
url="http://handbrake.fr/"
|
|
license=('GPL')
|
|
depends=('bzip2' 'gcc-libs' 'zlib' 'fribidi' 'ffmpeg')
|
|
makedepends=('intltool' 'python' 'yasm' 'wget' 'libnotify' 'gstreamer0.10-base' 'dbus-glib')
|
|
source=("http://downloads.sourceforge.net/project/handbrake/$pkgver/HandBrake-$pkgver.tar.bz2")
|
|
categories=('multimedia')
|
|
md5sums=('ee81337a46f8af76599d6038f193a2c1')
|
|
|
|
build() {
|
|
cd "$srcdir/HandBrake-$pkgver"
|
|
|
|
./configure --prefix=/usr --force --disable-gtk --disable-gtk-update-checks --enable-ff-mpeg2
|
|
cd build
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/HandBrake-$pkgver/build"
|
|
|
|
install -D HandBrakeCLI "$pkgdir/usr/bin/HandBrakeCLI"
|
|
}
|
|
|