diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-04-19 11:44:15 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-04-19 11:44:15 +0200 |
commit | f97d206e9152e1d29ad8fb9f2ea2aee95f1da625 (patch) | |
tree | af56a7953cb3e5e4619535b1509b85fec5408505 /community/mlt | |
parent | 32ead4093d89e260920e5bb604e7eeeeff26e725 (diff) | |
parent | 85ca6bfccdec6939881572fb1154f1a07d54937c (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
core/openssl/PKGBUILD
testing/at-spi2-core/PKGBUILD
testing/brasero/PKGBUILD
testing/brasero/brasero.install
testing/cheese/PKGBUILD
testing/cheese/cheese.install
testing/clutter/PKGBUILD
testing/eog/PKGBUILD
testing/gdm/PKGBUILD
testing/gdm/gdm-autologin.pam
testing/gdm/gdm-fingerprint.pam
testing/gdm/gdm-password.pam
testing/gdm/gdm-smartcard.pam
testing/gedit/PKGBUILD
testing/gedit/gedit.install
testing/glib-networking/PKGBUILD
testing/glib-networking/glib-networking.install
testing/gnome-online-accounts/PKGBUILD
testing/gnome-screenshot/PKGBUILD
testing/gnome-system-log/PKGBUILD
testing/gnome-system-monitor/PKGBUILD
testing/gnome-system-monitor/gnome-system-monitor.install
testing/gobject-introspection/PKGBUILD
testing/gucharmap/PKGBUILD
testing/gucharmap/gucharmap.install
testing/libsoup/PKGBUILD
testing/nautilus/PKGBUILD
testing/nautilus/nautilus.install
testing/tomboy/PKGBUILD
testing/tomboy/tomboy.install
testing/vinagre/PKGBUILD
testing/vinagre/vinagre.install
testing/vino/PKGBUILD
testing/vino/vino.install
Diffstat (limited to 'community/mlt')
-rw-r--r-- | community/mlt/PKGBUILD | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/community/mlt/PKGBUILD b/community/mlt/PKGBUILD index 7913effef..c93ca71ee 100644 --- a/community/mlt/PKGBUILD +++ b/community/mlt/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 65327 2012-02-21 01:36:41Z spupykin $ +# $Id: PKGBUILD 69518 2012-04-17 19:42:41Z ebelanger $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Fabian Schoelzel <myfirstname.mylastname@googlemail.com> # Contributor: funkyou <spamopfer@nickname.berlin.de> @@ -8,7 +8,7 @@ pkgbase=mlt pkgname=('mlt' 'mlt-python-bindings') pkgver=0.7.8 -pkgrel=1 +pkgrel=2 pkgdesc="An open source multimedia framework" arch=('i686' 'x86_64' 'mips64el') url="http://www.mltframework.org" @@ -20,7 +20,7 @@ md5sums=('4bdce45d832e065ac4c8c8ca56765e1d') build() { # mlt - cd $srcdir/mlt-$pkgver + cd "$srcdir/mlt-$pkgver" # [ $CARCH == "i686" ] && SSE2=--disable-sse2 || SSE2= SSE2=--disable-sse2 @@ -33,7 +33,7 @@ build() { make # mlt python bindings - cd $srcdir/mlt-$pkgver/src/swig/python + cd "$srcdir/mlt-$pkgver/src/swig/python" sed -i 's_path=`which python_path=`which python2_' build sed -i 's_`python -c_`python2 -c_' build sed -i 's#python-config#python2-config#' build @@ -45,16 +45,16 @@ package_mlt() { optdepends=('jack' 'libexif' 'qt' 'gtk2' "ladspa") conflicts=('mlt++<=0.3.8') - cd $srcdir/mlt-$pkgver - make DESTDIR=$pkgdir install + cd "$srcdir/mlt-$pkgver" + make DESTDIR="$pkgdir" install } package_mlt-python-bindings() { depends=('python2' 'mlt') - cd $srcdir/mlt-$pkgver/src/swig/python - mkdir -p $pkgdir/usr/lib/python2.7/ - install -m755 mlt.py $pkgdir/usr/lib/python2.7/ - install -m755 _mlt.so $pkgdir/usr/lib/python2.7/ - install -m755 mlt_wrap.o $pkgdir/usr/lib/python2.7/ + cd "$srcdir/mlt-$pkgver/src/swig/python" + mkdir -p "$pkgdir/usr/lib/python2.7/" + install -m755 mlt.py "$pkgdir/usr/lib/python2.7/" + install -m755 _mlt.so "$pkgdir/usr/lib/python2.7/" + install -m755 mlt_wrap.o "$pkgdir/usr/lib/python2.7/" } |