Last active
December 24, 2015 05:29
-
-
Save undu/6751215 to your computer and use it in GitHub Desktop.
Pkgbuild for ex falso 3.0.2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Alexander Fehr <pizzapunk gmail com> | |
pkgname=exfalso | |
pkgver=3.0.2 | |
pkgrel=1 | |
pkgdesc="GTK+ audio tag editor" | |
arch=('any') | |
url="http://code.google.com/p/quodlibet/" | |
license=('GPL2') | |
depends=('python2-gobject' 'mutagen' 'desktop-file-utils' 'hicolor-icon-theme') | |
makedepends=('intltool') | |
conflicts=('quodlibet') | |
install=exfalso.install | |
source=(http://quodlibet.googlecode.com/files/quodlibet-$pkgver.tar.gz) | |
md5sums=('896148be29f6d483816a0bdab9d936ae') | |
build () { | |
cd "$srcdir"/quodlibet-$pkgver | |
# Use Python 2 | |
sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' exfalso.py quodlibet/util/fmps.py | |
python2 setup.py build | |
} | |
package() { | |
cd "$srcdir"/quodlibet-$pkgver | |
python2 setup.py install --root="$pkgdir" | |
# Remove Quod Libet | |
rm -f "$pkgdir"/usr/bin/quodlibet | |
rm -f "$pkgdir"/usr/share/applications/quodlibet.desktop | |
rm -f "$pkgdir"/usr/share/icons/hicolor/*/apps/quodlibet.* | |
rm -f "$pkgdir"/usr/share/pixmaps/quodlibet.png | |
rm -f "$pkgdir"/usr/share/man/man1/quodlibet.1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment