From 018f946ee70600993c60a74046f417ca05bdb41b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Mon, 20 Sep 2021 17:08:32 +0200 Subject: ArchLinux: Take a newer state of pkgbuilds from Michael Manley Clean old long-term not maintained pkgbuilds. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- arch/tde-core/tde-arts/PKGBUILD | 60 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 arch/tde-core/tde-arts/PKGBUILD (limited to 'arch/tde-core/tde-arts/PKGBUILD') diff --git a/arch/tde-core/tde-arts/PKGBUILD b/arch/tde-core/tde-arts/PKGBUILD new file mode 100644 index 000000000..1d3fe5e8f --- /dev/null +++ b/arch/tde-core/tde-arts/PKGBUILD @@ -0,0 +1,60 @@ +# Maintainer: Michael Manley +# Contributor: Pawel 'l0ner' Soltys +# Contributor: Calvin Morrison +# Contributor: David C. Rankin + +pkgname=tde-arts +pkgver=14.0.5 +pkgrel=1 +pkgdesc="Trinity ARTS Sound System and libraries" +arch=('i686' 'x86_64') +url='http://scm.trinitydesktop.org/scm/git/arts' +license=('GPL') +groups=('tde-core') +depends=('alsa-plugins' + 'alsa-tools' + 'alsa-utils' + 'audiofile' + 'glib2' + 'libmad' + 'libogg' + 'libvorbis' + 'pulseaudio-alsa' + 'tde-tqtinterface') +makedepends=('pkgconfig' 'cmake') +optdepends=('audio-convert: A script with an easy to use interface to convert audio files: wav, mp3, ogg, flac, aac, mpc, ape and wma' + 'lame: A high quality MPEG Audio Layer III (MP3) encoder' + 'libmp3splt: Library for splitting mp3 and ogg files without decoding' + 'mpd: Music daemon that plays MP3, FLAC, and Ogg Vorbis files' + 'vorbis-tools: Extra tools for Ogg-Vorbis') +provides=('arts') +conflicts=('kdemod3-arts' 'arts') +replaces=('trinity-arts') +options=('staticlibs' 'libtool' '!emptydirs') +source=("http://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/dependencies/arts-R${pkgver}.tar.bz2") +md5sums=('2632ad0a5045b24a5f01ed1aebcf2fa8') +install='tde-arts.install' + +build() { + cd $srcdir + msg "Creating out-of-source build directory: ${srcdir}/build" + mkdir -p build + cd build + + msg "Starting cmake..." + cmake ${srcdir}/dependencies/arts/ \ + -DCMAKE_INSTALL_PREFIX=${TDEDIR} \ + -DWITH_GCC_VISIBILITY=ON + + msg "Building $pkgname..." + make $NUMJOBS + +} + +package() { + msg "Packaging - $pkgname-$pkgver" + + cd ${srcdir}/build + make -j1 DESTDIR="$pkgdir" install + +} -- cgit v1.2.1