summaryrefslogtreecommitdiffstats
path: root/arch/tde-extra/tde-tdeaddons
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-09-20 17:08:32 +0200
committerTDE Gitea <gitea@mirror.git.trinitydesktop.org>2021-09-29 06:38:40 +0000
commit018f946ee70600993c60a74046f417ca05bdb41b (patch)
tree37829ad4f8af4005172148ee78ab38b67328cecb /arch/tde-extra/tde-tdeaddons
parent2bcda9ee7da7582ee0e550a71b9f865cac76dce2 (diff)
downloadtde-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-tdeaddons')
-rw-r--r--arch/tde-extra/tde-tdeaddons/PKGBUILD43
1 files changed, 43 insertions, 0 deletions
diff --git a/arch/tde-extra/tde-tdeaddons/PKGBUILD b/arch/tde-extra/tde-tdeaddons/PKGBUILD
new file mode 100644
index 000000000..8a16ac123
--- /dev/null
+++ b/arch/tde-extra/tde-tdeaddons/PKGBUILD
@@ -0,0 +1,43 @@
+# Contributor: e1z0 <justinas at eofnet dot lt>
+
+pkgname=tde-tdeaddons
+pkgver=14.0.5
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://scm.trinitydesktop.org/scm/git/tdeaddons'
+license=('GPL')
+groups=('tde-extra')
+pkgdesc="Trinity Desktop Addons"
+depends=('tde-tdebase')
+makedepends=('pkgconfig' 'cmake' 'tde-tdegames' 'tde-tdepim' 'tde-tdemultimedia')
+provides=('tdeaddons')
+conflicts=('trinity-tdeaddons' 'trinity-kdeaddons')
+replaces=('trinity-tdeaddons')
+options=('staticlibs' 'libtool' '!strip')
+source=("http://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/tdeaddons-R${pkgver}.tar.bz2")
+md5sums=('b730d4d465d867755a19f77e6efc9e88')
+# install=''
+
+build() {
+ cd $srcdir
+ msg "Creating out-of-source build directory: ${srcdir}/build"
+ mkdir -p build
+ cd build
+
+ msg "Starting cmake..."
+ cmake ${srcdir}/${pkgname#*-} \
+ -DCMAKE_VERBOSE_MAKEFILE=ON \
+ -DCMAKE_INSTALL_PREFIX=$TDEDIR \
+ -DWITH_SPEEX=ON \
+ -DWITH_ARTS=ON \
+ -DBUILD_ALL=ON
+
+ msg "Building - ${pkgname#*-}..."
+ make $NUMJOBS
+}
+
+package() {
+ msg "Packaging - $pkgname-$pkgver"
+ cd ${srcdir}/build
+ make -j1 DESTDIR="${pkgdir}" install
+}