Various updates
Update pkgver Update url Remove install file, shouldn't be needed Create pyc files
This commit is contained in:
parent
a2c94b18a1
commit
0e721127a9
3 changed files with 12 additions and 27 deletions
7
.SRCINFO
7
.SRCINFO
|
@ -1,9 +1,8 @@
|
||||||
pkgbase = quodlibet-git
|
pkgbase = quodlibet-git
|
||||||
pkgdesc = An audio library tagger, manager and player
|
pkgdesc = An audio library tagger, manager and player
|
||||||
pkgver = r7848.84a0f2e
|
pkgver = r9120.37e477f1e
|
||||||
pkgrel = 3
|
pkgrel = 1
|
||||||
url = https://github.com/quodlibet/quodlibet
|
url = https://quodlibet.readthedocs.io
|
||||||
install = quodlibet-git.install
|
|
||||||
arch = any
|
arch = any
|
||||||
license = GPL2
|
license = GPL2
|
||||||
makedepends = intltool
|
makedepends = intltool
|
||||||
|
|
20
PKGBUILD
20
PKGBUILD
|
@ -1,13 +1,12 @@
|
||||||
# Maintainer: Christoph Reiter <reiter.christoph@gmail.com>
|
# Maintainer: Christoph Reiter <reiter.christoph@gmail.com>
|
||||||
|
|
||||||
pkgname=quodlibet-git
|
pkgname=quodlibet-git
|
||||||
_srcname=quodlibet
|
pkgver=r9120.37e477f1e
|
||||||
pkgver=r7848.84a0f2e
|
pkgrel=1
|
||||||
pkgrel=3
|
|
||||||
pkgdesc="An audio library tagger, manager and player"
|
pkgdesc="An audio library tagger, manager and player"
|
||||||
arch=('any')
|
arch=('any')
|
||||||
license=('GPL2')
|
license=('GPL2')
|
||||||
url="https://github.com/quodlibet/quodlibet"
|
url="https://quodlibet.readthedocs.io"
|
||||||
depends=('gtk3' 'python2-gobject' 'python2-dbus' 'python2-cairo' 'mutagen'
|
depends=('gtk3' 'python2-gobject' 'python2-dbus' 'python2-cairo' 'mutagen'
|
||||||
'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly'
|
'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly'
|
||||||
'desktop-file-utils' 'python2-futures' 'python2-feedparser'
|
'desktop-file-utils' 'python2-futures' 'python2-feedparser'
|
||||||
|
@ -25,10 +24,14 @@ provides=('quodlibet-plugins' 'quodlibet')
|
||||||
conflicts=('quodlibet-plugins' 'quodlibet')
|
conflicts=('quodlibet-plugins' 'quodlibet')
|
||||||
replaces=('quodlibet-plugins')
|
replaces=('quodlibet-plugins')
|
||||||
options=('!makeflags')
|
options=('!makeflags')
|
||||||
install=${pkgname}.install
|
|
||||||
source=(${pkgname}::git+https://github.com/quodlibet/quodlibet.git)
|
source=(${pkgname}::git+https://github.com/quodlibet/quodlibet.git)
|
||||||
sha1sums=('SKIP')
|
sha1sums=('SKIP')
|
||||||
|
|
||||||
|
pkgver() {
|
||||||
|
cd ${pkgname}
|
||||||
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||||
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd ${pkgname}/quodlibet
|
cd ${pkgname}/quodlibet
|
||||||
python2 setup.py build
|
python2 setup.py build
|
||||||
|
@ -36,10 +39,5 @@ build() {
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd ${pkgname}/quodlibet
|
cd ${pkgname}/quodlibet
|
||||||
python2 setup.py install --root="${pkgdir}"
|
python2 setup.py install --root="${pkgdir}" --skip-build --optimize=1
|
||||||
}
|
|
||||||
|
|
||||||
pkgver() {
|
|
||||||
cd ${pkgname}
|
|
||||||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
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