29 lines
840 B
Plaintext
29 lines
840 B
Plaintext
# Description: API multimedia of KDE4. the replaces the old aRts, which is more supported by KDE.
|
|
# URL: http://www.kde.org
|
|
# Packager: - pierre at nutyx dot org
|
|
# Depends on: qt4 glib pulseaudio
|
|
name=phonon
|
|
version=4.8.3
|
|
release=1
|
|
|
|
source=(http://download.kde.org/stable/$name/$version/src/$name-$version.tar.xz)
|
|
build() {
|
|
cd $name-$version
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON \
|
|
-DDBUS_INTERFACES_INSTALL_DIR=/usr/share/dbus-1/interfaces \
|
|
-Wno-dev ..
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
install -d $PKG/usr/include/qt4
|
|
mv $PKG/usr/include/{phonon,KDE} $PKG/usr/include/qt4/
|
|
sed -i 's#includedir=/usr/include#includedir=/usr/include/qt4#' \
|
|
$PKG/usr/lib/pkgconfig/phonon.pc
|
|
}
|