summaryrefslogtreecommitdiff
path: root/mpd/Pkgfile
blob: 75a35ed8f4aab23bad5c430cefc81faa78701bf6 (plain)
    1 # Description:  Music playback daemon
    2 # URL:          http://www.musicpd.org/
    3 # Maintainer:   Thomas Penteker, tek at serverop dot de
    4 # Depends on:   boost glib libid3tag libmad libvorbis
    5 # Optional:     faad2 flac audiofile
    6 
    7 name=mpd
    8 version=0.21.19
    9 release=1
   10 source=(https://www.musicpd.org/download/mpd/${version%.*}/$name-$version.tar.xz mpd)
   11 
   12 build() {
   13   cd $name-$version
   14 
   15   meson build \
   16       --prefix=/usr \
   17       --sysconfdir=/etc \
   18       -Dmpcdec=disabled
   19 
   20   ninja -C build -j ${JOBS-1}
   21   DESTDIR=$PKG meson install -C build
   22 
   23   install -d $PKG/etc
   24   install -m 0644 doc/mpdconf.example $PKG/etc/mpd.conf 
   25   install -D $SRC/mpd $PKG/etc/rc.d/mpd
   26 
   27   install -D doc/mpd.1 $PKG/usr/share/man/1/mpd.1
   28   install -D doc/mpd.conf.5 $PKG/usr/share/man/5/mpd.conf.5
   29 
   30   rm -r $PKG/usr/share/doc
   31 }

Generated by cgit