diff options
author | ToadKing | 2020-07-06 14:47:00 -0500 |
---|---|---|
committer | ToadKing | 2020-07-06 14:47:00 -0500 |
commit | dca648ec288d3156c7c6bad9baae0cc9d1b2b5df (patch) | |
tree | 36b077ed0da62cd0989e98591404355c1ee87652 | |
parent | da5033adaccefad411f216c43ebce934e58b4eb6 (diff) | |
download | aur-dca648ec288d3156c7c6bad9baae0cc9d1b2b5df.tar.gz |
fix SRCINFO file not being up-to-date
update URLs
change how git submodules are checked out
-rw-r--r-- | .SRCINFO | 9 | ||||
-rw-r--r-- | PKGBUILD | 19 |
2 files changed, 15 insertions, 13 deletions
@@ -1,8 +1,8 @@ pkgbase = deadbeef-git pkgdesc = A GTK+ audio player for GNU/Linux (devel branch) - pkgver = r7453.446177f6 - pkgrel = 1 - url = http://deadbeef.sourceforge.net + pkgver = r9352.447108249 + pkgrel = 2 + url = https://deadbeef.sourceforge.io/ install = deadbeef.install arch = i686 arch = x86_64 @@ -56,10 +56,11 @@ pkgbase = deadbeef-git optdepends = yasm: required to build assembly portions of ffap plugin optdepends = libzip: for vfs_zip plugin optdepends = ffmpeg: for ffmpeg plugin + optdepends = opusfile: for opus plugin provides = deadbeef conflicts = deadbeef options = !libtool - source = git+https://github.com/Alexey-Yakovenko/deadbeef + source = git+https://github.com/DeaDBeeF-Player/deadbeef.git md5sums = SKIP pkgname = deadbeef-git @@ -3,9 +3,9 @@ # Contributor: archtux <antonio dot arias99999 at gmail dot com> pkgname=deadbeef-git pkgver=r9352.447108249 -pkgrel=1 +pkgrel=2 pkgdesc="A GTK+ audio player for GNU/Linux (devel branch)" -url="http://deadbeef.sourceforge.net" +url="https://deadbeef.sourceforge.io/" arch=('i686' 'x86_64') license=('GPL2') depends=('alsa-lib' 'desktop-file-utils' 'hicolor-icon-theme' 'jansson') @@ -13,7 +13,7 @@ makedepends=('curl' 'faad2' 'flac' 'git' 'intltool' 'imlib2' 'libcddb' 'libcdio' 'libsamplerate' 'libvorbis' 'libx11' 'libzip' 'wavpack' 'yasm' 'ffmpeg' 'gtk2' 'gtk3') optdepends=('gtk2: for the GTK2 interface' - 'gtk3: for the GTK3 interface' + 'gtk3: for the GTK3 interface' 'libsamplerate: for dsp_libsrc plugin (resampler)' 'libsm: optional dependency for gtkui session client support' 'libice: optional dependency for gtkui session client support' @@ -37,26 +37,27 @@ optdepends=('gtk2: for the GTK2 interface' 'libsidplay: for SID player plugin' 'yasm: required to build assembly portions of ffap plugin' 'libzip: for vfs_zip plugin' - 'ffmpeg: for ffmpeg plugin' - 'opusfile: for opus plugin') + 'ffmpeg: for ffmpeg plugin' + 'opusfile: for opus plugin') install='deadbeef.install' options=('!libtool') conflicts=('deadbeef') provides=('deadbeef') -source=('git+https://github.com/Alexey-Yakovenko/deadbeef') +source=('git+https://github.com/DeaDBeeF-Player/deadbeef.git') md5sums=('SKIP') prepare() { cd "$srcdir/deadbeef" - git submodule update --init external/mp4p - + # skip osx/deps submodule + git -c submodule."osx/deps".update=none submodule update --init --recursive + ./autogen.sh ./configure --prefix=/usr } build() { cd "$srcdir/deadbeef" - + make } |