Initial import
This commit is contained in:
commit
83c98c3226
3 changed files with 104 additions and 0 deletions
43
.SRCINFO
Normal file
43
.SRCINFO
Normal file
|
@ -0,0 +1,43 @@
|
|||
# Generated by mksrcinfo v8
|
||||
# Tue Feb 2 22:00:47 UTC 2016
|
||||
pkgbase = quodlibet-git
|
||||
pkgdesc = An audio library tagger, manager and player
|
||||
pkgver = 093e5f4
|
||||
pkgrel = 1
|
||||
url = https://github.com/quodlibet/quodlibet
|
||||
install = quodlibet-git.install
|
||||
arch = any
|
||||
license = GPL2
|
||||
makedepends = intltool
|
||||
depends = gtk3
|
||||
depends = python2-gobject
|
||||
depends = python2-dbus
|
||||
depends = python2-cairo
|
||||
depends = mutagen
|
||||
depends = gst-plugins-base
|
||||
depends = gst-plugins-good
|
||||
depends = gst-plugins-ugly
|
||||
depends = desktop-file-utils
|
||||
optdepends = gst-libav: for ffmpeg (ASF/WMA) support
|
||||
optdepends = gst-plugins-bad: for Musepack support
|
||||
optdepends = libgpod: for ipod support
|
||||
optdepends = python2-feedparser: for audio feeds (podcast) support
|
||||
optdepends = libkeybinder3: for the multimedia keys support
|
||||
optdepends = media-player-info: for media devices support
|
||||
optdepends = cddb-py: for "CDDB Lookup" plugin
|
||||
optdepends = python2-musicbrainz2: for "MusicBrainz Lookup" plugin
|
||||
optdepends = python2-pyinotify: for "Automatic library update" plugin
|
||||
optdepends = kakasi: for "Kana/Kanji Simple Inverter" plugin
|
||||
optdepends = zeitgeist: for "Event Logging" plugin
|
||||
optdepends = gst-plugins-bad: for "Audio Pitch/Speed" plugin
|
||||
provides = quodlibet-plugins
|
||||
provides = quodlibet
|
||||
conflicts = quodlibet-plugins
|
||||
conflicts = quodlibet
|
||||
replaces = quodlibet-plugins
|
||||
options = !makeflags
|
||||
source = quodlibet-git::git+https://github.com/quodlibet/quodlibet.git
|
||||
sha1sums = SKIP
|
||||
|
||||
pkgname = quodlibet-git
|
||||
|
49
PKGBUILD
Normal file
49
PKGBUILD
Normal file
|
@ -0,0 +1,49 @@
|
|||
# Maintainer: Olivier Churlaud <olivier@churlaud.com>
|
||||
|
||||
pkgname=quodlibet-git
|
||||
_srcname=quodlibet
|
||||
pkgver=093e5f4
|
||||
pkgrel=1
|
||||
pkgdesc="An audio library tagger, manager and player"
|
||||
arch=('any')
|
||||
license=('GPL2')
|
||||
url="https://github.com/quodlibet/quodlibet"
|
||||
depends=('gtk3' 'python2-gobject' 'python2-dbus' 'python2-cairo' 'mutagen'
|
||||
'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly'
|
||||
'desktop-file-utils')
|
||||
makedepends=('intltool')
|
||||
optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
|
||||
'gst-plugins-bad: for Musepack support'
|
||||
'libgpod: for ipod support'
|
||||
'python2-feedparser: for audio feeds (podcast) support'
|
||||
'libkeybinder3: for the multimedia keys support'
|
||||
'media-player-info: for media devices support'
|
||||
'cddb-py: for "CDDB Lookup" plugin'
|
||||
'python2-musicbrainz2: for "MusicBrainz Lookup" plugin'
|
||||
'python2-pyinotify: for "Automatic library update" plugin'
|
||||
'kakasi: for "Kana/Kanji Simple Inverter" plugin'
|
||||
'zeitgeist: for "Event Logging" plugin'
|
||||
'gst-plugins-bad: for "Audio Pitch/Speed" plugin')
|
||||
provides=('quodlibet-plugins' 'quodlibet')
|
||||
conflicts=('quodlibet-plugins' 'quodlibet')
|
||||
replaces=('quodlibet-plugins')
|
||||
options=('!makeflags')
|
||||
install=${pkgname}.install
|
||||
source=(${pkgname}::git+https://github.com/quodlibet/quodlibet.git)
|
||||
sha1sums=('SKIP')
|
||||
|
||||
build() {
|
||||
cd ${pkgname}/quodlibet
|
||||
python2 setup.py build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${pkgname}/quodlibet
|
||||
python2 setup.py install --root="${pkgdir}"
|
||||
}
|
||||
|
||||
pkgver() {
|
||||
cd ${pkgname}
|
||||
git log -1 --pretty=format:%h
|
||||
}
|
||||
|
12
quodlibet-git.install
Normal file
12
quodlibet-git.install
Normal file
|
@ -0,0 +1,12 @@
|
|||
post_install() {
|
||||
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
|
||||
update-desktop-database -q
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
post_install
|
||||
}
|
Loading…
Reference in a new issue