You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.1 KiB
50 lines
1.1 KiB
# Maintainer: Pawel 'l0ner' Soltys <pwslts@gmail.com>
|
|
# Contributor: Calvin Morrison <mutantturkey@gmail.com>
|
|
|
|
pkgname=trinity-arts
|
|
pkgver=3513
|
|
pkgrel=2
|
|
arch=('i686' 'x86_64')
|
|
url='http://www.trinitydesktop.com'
|
|
license=('GPL')
|
|
groups=('trinity-base')
|
|
pkgdesc="Trinity arts Sound System and libraries"
|
|
depends=('trinity-tqtinterface'
|
|
'audiofile' 'libmad' 'libvorbis'
|
|
'glib2')
|
|
makedepends=('pkgconfig' 'cmake')
|
|
conflicts=('kdemod3-arts')
|
|
options=('!libtool' '!emptydirs')
|
|
source=(http://mirror.ets.kth.se/trinity/releases/3.5.13/dependencies/arts-3.5.13.tar.gz)
|
|
md5sums=('109124dabb1aaa9d44eb32e43b549142')
|
|
|
|
_prefix="/opt/trinity"
|
|
|
|
build() {
|
|
|
|
msg "Setting PATH, CMAKE and Trinity Environment variables"
|
|
. /etc/profile.d/qt3.sh
|
|
|
|
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=${_prefix}
|
|
|
|
msg "Building $pkgname..."
|
|
make VERBOSE=1
|
|
|
|
}
|
|
|
|
package() {
|
|
msg "Packaging - $pkgname-$pkgver"
|
|
|
|
cd ${srcdir}/build
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
|
|
}
|