diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-09-20 17:08:32 +0200 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2021-09-29 06:38:40 +0000 |
commit | 018f946ee70600993c60a74046f417ca05bdb41b (patch) | |
tree | 37829ad4f8af4005172148ee78ab38b67328cecb /arch/tde-extra/tde-kmplayer/PKGBUILD | |
parent | 2bcda9ee7da7582ee0e550a71b9f865cac76dce2 (diff) | |
download | tde-packaging-018f946ee70600993c60a74046f417ca05bdb41b.tar.gz tde-packaging-018f946ee70600993c60a74046f417ca05bdb41b.zip |
ArchLinux: Take a newer state of pkgbuilds from Michael Manley
Clean old long-term not maintained pkgbuilds.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'arch/tde-extra/tde-kmplayer/PKGBUILD')
-rw-r--r-- | arch/tde-extra/tde-kmplayer/PKGBUILD | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/arch/tde-extra/tde-kmplayer/PKGBUILD b/arch/tde-extra/tde-kmplayer/PKGBUILD new file mode 100644 index 000000000..a5b3bdcc5 --- /dev/null +++ b/arch/tde-extra/tde-kmplayer/PKGBUILD @@ -0,0 +1,60 @@ +# Maintainer: Michael Manley <mmanley@nasutek.com> +# Contributor: David C. Rankin <drankinatty at gmail dot com> + +pkgname=tde-kmplayer +pkgver=14.0.5 +pkgrel=1 +pkgdesc="TDE KMPlayer" +arch=('i686' 'x86_64') +url='http://scm.trinitydesktop.org/scm/git/applications/kmplayer' +license=('GPL') +groups=('tde-extra') +depends=('tde-tdebase' 'dbus-glib') +makedepends=('pkgconfig' 'cmake' 'mplayer') +#provides=('kmplayer') +#conflicts=('kmplayer') +#replaces=('kmplayer') +options=('staticlibs' 'libtool' '!strip') +source=("http://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/applications/kmplayer-R${pkgver}.tar.bz2" + "callback-stub-fix.patch") +md5sums=('968e2116b333ea646ce00fd2ab2038a8' + '31ed0b0814a3855c65541c058ac91a68') +# install='' + +build() { + ## Generate config files and update with autoreconf + cd ${srcdir}/applications/${pkgname#*-} + + msg "Patching for callback stub header..." + patch -p1 -i ${srcdir}/callback-stub-fix.patch + + msg "Copying system libtool files...." + cp /usr/share/aclocal/libtool.m4 ./admin/libtool.m4.in + cp /usr/share/libtool/build-aux/ltmain.sh ./admin/ltmain.sh + + msg "Running make -f admin/Makefile.common ...." + make -f admin/Makefile.common + + ## configure + msg "Configuring - ${pkgname}..." + CFLAGS="${CFLAGS} -fpermissive" \ + CXXFLAGS="${CXXFLAGS} -fpermissive" \ + ./configure \ + --prefix=${TDEDIR} \ + --with-qt-dir=${QTDIR} \ + --with-qt-includes=${QTDIR}/include \ + --with-qt-libraries=${QTDIR}/lib \ + --sysconfdir=${TDEDIR}/etc \ + --localstatedir=/var \ + --enable-closure + + msg "Building - ${pkgname#*-}..." +make $NUMJOBS +} + +package() { +msg "Packaging - $pkgname-$pkgver" + cd ${srcdir}/applications/${pkgname#*-} # use for libtool + +make -j1 DESTDIR="${pkgdir}" install +} |