summaryrefslogtreecommitdiff
path: root/mpd/Pkgfile
blob: f305ef0e0d7d43ca64ef6eda828fe307e83f41b4 (plain)
    1 # Description: Music playback daemon
    2 # URL: https://www.musicpd.org/
    3 # Maintainer: Tim Biermann, tbier at posteo dot de
    4 # Depends on: boost meson ninja
    5 # Optional: audiofile faad2 flac python3-sphinx
    6 
    7 name=mpd
    8 version=0.22.6
    9 release=1
   10 #source=(https://www.musicpd.org/download/mpd/$version/$name-$version.tar.xz mpd)
   11 source=(https://www.musicpd.org/download/mpd/${version%.*}/$name-$version.tar.xz mpd)
   12 
   13 build() {
   14   meson setup $name-$version build \
   15     --prefix=/usr \
   16     --sysconfdir=/etc/mpd \
   17     --buildtype=plain \
   18     -Dmpcdec=disabled \
   19     -Ddocumentation=disabled
   20   meson compile -C build -j ${JOBS-1}
   21   DESTDIR=$PKG meson install -C build
   22 
   23   install -Dm 0644 $SRC/$name-$version/doc/mpdconf.example $PKG/etc/mpd/mpd.conf
   24   install -D $SRC/mpd $PKG/etc/rc.d/mpd
   25 
   26   rm -r $PKG/usr/share/doc
   27 }

Generated by cgit