diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-09-22 17:25:57 +0200 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2021-09-29 06:38:41 +0000 |
commit | 08dc2d3a905752c1f405392c4f2e33ba577a9b8b (patch) | |
tree | 2e6f4dbd0bf48e8fe6bc4e41888253eef71d3f32 /arch/tde-extra/tde-amarok | |
parent | 9ef3d4a4b9fc3e366f4a169482997f5ce2fbdf4f (diff) | |
download | tde-packaging-08dc2d3a905752c1f405392c4f2e33ba577a9b8b.tar.gz tde-packaging-08dc2d3a905752c1f405392c4f2e33ba577a9b8b.zip |
ArchLinux: Update remaining application in tde-extra to R14.0.10.
Switch amarok, kmplayer, ksplash-engine-moodin,
tde-systemsettings, tdesudo and tdmtheme to CMake.
Backport patches to tdesudo to resolve FTBFS.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'arch/tde-extra/tde-amarok')
-rw-r--r-- | arch/tde-extra/tde-amarok/PKGBUILD | 37 |
1 files changed, 22 insertions, 15 deletions
diff --git a/arch/tde-extra/tde-amarok/PKGBUILD b/arch/tde-extra/tde-amarok/PKGBUILD index d26358250..b87b39775 100644 --- a/arch/tde-extra/tde-amarok/PKGBUILD +++ b/arch/tde-extra/tde-amarok/PKGBUILD @@ -1,40 +1,47 @@ # Contributor: e1z0 <justinas at eofnet dot lt> pkgname=tde-amarok -pkgver=14.0.5 +pkgver=14.0.10 pkgrel=1 pkgdesc="TDE Amarok" arch=('i686' 'x86_64') -url='http://scm.trinitydesktop.org/scm/git/applications/amarok' +url='https://scm.trinitydesktop.org/scm/git/applications/amarok' license=('GPL') groups=('tde-extra') -depends=('tde-tdebase' 'taglib') +depends=('tde-tdebase' 'taglib' 'xine-lib') makedepends=('pkgconfig' 'cmake') #provides=('tde-amarok') #conflicts=('tde-amarok') #replaces=('tde-amarok') options=('staticlibs' 'libtool' '!strip') -source=("http://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/applications/amarok-R${pkgver}.tar.bz2") -md5sums=('0351b0d4ee54ae266e2a3ec47cd3accf') +source=("https://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/main/applications/amarok-trinity-${pkgver}.tar.xz") +md5sums=('fab4ed783d4027711e4aaca098bb04b1') # install='' +[ -n "$TDEDIR" ] || TDEDIR=/opt/trinity + build() { - ## Generate config files and update with autoreconf - cd ${srcdir}/applications/${pkgname#*-} + cd $srcdir + msg "Creating out-of-source build directory: ${srcdir}/build" + mkdir -p build + cd build - msg "Running make -f admin/Makefile.common ...." - make -f admin/Makefile.common + export PKG_CONFIG_PATH=${TDEDIR}/lib/pkgconfig:${PKG_CONFIG_PATH} - ## configure - msg "Configuring - ${pkgname}..." + msg "Starting cmake..." + cmake ${srcdir}/${pkgname#*-}-trinity-${pkgver} \ + -DCMAKE_VERBOSE_MAKEFILE=ON \ + -DCMAKE_INSTALL_PREFIX=${TDEDIR} \ + -DBUILD_ALL=ON \ + -DWITH_EMBEDDED_SQLITE=ON \ + -DWITH_OPENGL=ON - ./configure --prefix=${TDEDIR} - make $NUMJOBS + msg "Building - ${pkgname#*-}..." + make $NUMJOBS } package() { msg "Packaging - $pkgname-$pkgver" - cd ${srcdir}/applications/${pkgname#*-} - + cd ${srcdir}/build make -j1 DESTDIR="${pkgdir}" install } |