mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 14:07:13 +08:00
59 lines
2.1 KiB
Bash
59 lines
2.1 KiB
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=mpd
|
|
pkgver=0.16.5
|
|
pkgrel=1
|
|
pkgdesc="Music daemon that plays MP3, FLAC, and Ogg Vorbis files"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
url="http://mpd.wikia.com/wiki/Server"
|
|
depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 'faad2'
|
|
'sqlite3' 'jack' 'libmms' 'wavpack' 'libmpcdec' 'avahi' 'libid3tag'
|
|
'libpulse')
|
|
makedepends=('pkgconfig' 'doxygen')
|
|
install=${pkgname}.install
|
|
source=("http://downloads.sourceforge.net/musicpd/${pkgname}-${pkgver}.tar.bz2"
|
|
'mpd')
|
|
md5sums=('f7564cff12035f6a1112cce770655df7'
|
|
'e5669c2bff4031928531e52475addeb1')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--enable-lastfm \
|
|
--enable-jack \
|
|
--enable-pulse \
|
|
--enable-documentation \
|
|
--disable-libwrap \
|
|
--disable-cue \
|
|
--disable-sidplay
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
# set ours dirs in mpd.conf file
|
|
sed -i 's|^music_directory.*$|#music_directory "path_to_your_music_collection"|1' doc/mpdconf.example
|
|
sed -i 's|playlist_directory.*$|playlist_directory "/var/lib/mpd/playlists"|1' doc/mpdconf.example
|
|
sed -i 's|db_file.*$|db_file "/var/lib/mpd/mpd.db"|1' doc/mpdconf.example
|
|
sed -i 's|log_file.*$|log_file "/var/log/mpd/mpd.log"|1' doc/mpdconf.example
|
|
sed -i 's|error_file.*$|error_file "/var/log/mpd/mpd.error"|1' doc/mpdconf.example
|
|
sed -i 's|#pid_file.*$|pid_file "/var/run/mpd/mpd.pid"|1' doc/mpdconf.example
|
|
sed -i 's|#state_file.*$|state_file "/var/lib/mpd/mpdstate"|1' doc/mpdconf.example
|
|
sed -i 's|#user.*$|user "mpd"|1' doc/mpdconf.example
|
|
|
|
install -Dm644 doc/mpdconf.example ${pkgdir}/usr/share/mpd/mpd.conf.example
|
|
|
|
install -Dm755 ${srcdir}/mpd ${pkgdir}/etc/rc.d/mpd
|
|
install -d ${pkgdir}/var/{lib/mpd/playlists,log/mpd}
|
|
} |