diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2015-05-21 07:19:40 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2015-05-21 07:19:40 -0500 |
commit | f4e9003c538b6130c441652d5dbcfe4e639cf1f5 (patch) | |
tree | 5b120986244f47b8bd0f6202d808eaa98b9a0086 /pcr/lives/PKGBUILD | |
parent | a9f69cfa08723f8abf5608329437ca5a4205b067 (diff) | |
download | abslibre-f4e9003c538b6130c441652d5dbcfe4e639cf1f5.tar.gz abslibre-f4e9003c538b6130c441652d5dbcfe4e639cf1f5.tar.bz2 abslibre-f4e9003c538b6130c441652d5dbcfe4e639cf1f5.zip |
lives-2.2.8-1: updating version
Diffstat (limited to 'pcr/lives/PKGBUILD')
-rw-r--r-- | pcr/lives/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/pcr/lives/PKGBUILD b/pcr/lives/PKGBUILD new file mode 100644 index 000000000..83943634c --- /dev/null +++ b/pcr/lives/PKGBUILD @@ -0,0 +1,30 @@ +# Contributor: Angelo Theodorou <encelo@users.sourceforge.net> +pkgname=lives +pkgver=2.2.8 +pkgrel=1 +pkgdesc="A Video Editing System" +arch=('i686' 'x86_64') +url="http://lives.sourceforge.net" +license=('GPL') +depends=('mplayer' 'imagemagick' 'gtk3' 'sox' 'libvisual' 'liboil' 'libavc1394' 'mjpegtools' 'python' 'ffmpeg' 'ffmpeg-compat' 'jack' 'fftw') +optdepends=('xorg-utils' 'sdl' 'libogg' 'mkvtoolnix-cli' 'libmatroska' 'ogmtools' 'dvgrab' 'cdrkit' 'lame' 'youtube-dl') +options=(!libtool) +source=(http://www.xs4all.nl/%7Esalsaman/lives/current/LiVES-$pkgver.tar.bz2) +md5sums=('8440e2a2b6e83655dfc39c9fef5ee903') + +build() { + cd "$srcdir"/$pkgname-$pkgver + sed -i 's/gtk_label_set_y_align/gtk_label_set_yalign/g' src/widget-helper.c + # /bin/touch -> /usr/bin/touch + find -type f -exec sed -i 's:/bin/touch:/usr&:g' {} \; + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + + make DESTDIR="$pkgdir" install + rm "$pkgdir"/usr/bin/lives + ln -s /usr/bin/lives-exe "$pkgdir"/usr/bin/lives +} |