mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
#maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=2mandvd
|
|
pkgver=1.8.5
|
|
pkgrel=3
|
|
pkgdesc="DVD Authoring Maker In Linux Environment."
|
|
url="http://2mandvd.tuxfamily.org/"
|
|
license=('GPL')
|
|
arch=('x86_64')
|
|
depends=('qt' 'mesa' 'sox' 'mplayer' 'mencoder' 'perl' 'netpbm' 'transcode' 'ffmpeg-compat' 'ffmpegthumbnailer'
|
|
'dvdauthor' 'mjpegtools' 'ttf-dejavu' 'dvd+rw-tools' 'exif' 'python-opengl' 'glu')
|
|
optdepends=('xine-ui: to preview the result')
|
|
categories=('multimedia')
|
|
screenshot=('http://i1-linux.softpedia-static.com/screenshots/2ManDVD_1.jpg')
|
|
source=("http://download.tuxfamily.org/2mandvd/2ManDVD-${pkgver}.tar.gz"
|
|
"ffmpeg-0.11.diff")
|
|
sha1sums=('7f7f1ccf34ea8df1f24f6f28be36ea61012e03bd'
|
|
'e8bfd4adb11f5641a55719ff7d346f061281e8b2')
|
|
|
|
build() {
|
|
cd "${srcdir}/2ManDVD/"
|
|
|
|
qmake 2ManDVD.pro
|
|
|
|
sed -i "41s|#ifdef|//#ifdef|" videowrapper.cpp
|
|
sed -i '42i #if LIBAVFORMAT_VERSION_MAJOR >= 53' videowrapper.cpp
|
|
|
|
# Fix those damn absolute paths!
|
|
sed -e 's,chmod -R 755 /usr/share/2ManDVD,chmod -R 755 \$(INSTALL_ROOT)/usr/share/2ManDVD,g' \
|
|
-i Makefile
|
|
|
|
# Actually compile it
|
|
make
|
|
}
|
|
|
|
package(){
|
|
cd "${srcdir}/2ManDVD"
|
|
|
|
make INSTALL_ROOT="${pkgdir}" install
|
|
}
|