mpd.paketlendi
This commit is contained in:
parent
813c3b1285
commit
c57602e44e
|
@ -4,14 +4,14 @@
|
||||||
# Gerekler: libvorbis libtheora speex
|
# Gerekler: libvorbis libtheora speex
|
||||||
|
|
||||||
isim=libshout
|
isim=libshout
|
||||||
surum=2.3.1
|
surum=2.4.1
|
||||||
devir=1
|
devir=1
|
||||||
|
|
||||||
kaynak=(http://downloads.xiph.org/releases/$isim/$isim-$surum.tar.gz)
|
kaynak=(http://downloads.xiph.org/releases/$isim/$isim-$surum.tar.gz)
|
||||||
|
|
||||||
derle() {
|
derle() {
|
||||||
cd $isim-$surum
|
cd $isim-$surum
|
||||||
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
|
||||||
make
|
make
|
||||||
make DESTDIR=$PKG install
|
make DESTDIR=$PKG install
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
# Tanım: Esnek,güçlü sunucu bazlı müzik çalıcısı
|
||||||
|
# URL: https://www.musicpd.org/
|
||||||
|
# Paketçi: milisarge
|
||||||
|
# Gerekler: libmad libvorbis libid3tag glib faad2 flac libshout fluidsynth
|
||||||
|
|
||||||
|
isim=mpd
|
||||||
|
surum=0.20.12
|
||||||
|
devir=1
|
||||||
|
kaynak=(http://www.musicpd.org/download/$isim/0.20/$isim-$surum.tar.xz mpd)
|
||||||
|
|
||||||
|
derle() {
|
||||||
|
cd $isim-$surum
|
||||||
|
./configure --prefix=/usr \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--enable-ffmpeg \
|
||||||
|
--enable-flac \
|
||||||
|
--enable-fluidsynth \
|
||||||
|
--enable-pipe-output \
|
||||||
|
--enable-shout \
|
||||||
|
--enable-vorbis \
|
||||||
|
--enable-vorbis-encoder \
|
||||||
|
--enable-wave-encoder
|
||||||
|
make
|
||||||
|
make DESTDIR=$PKG install
|
||||||
|
mkdir -p $PKG/etc
|
||||||
|
install -m 0644 doc/mpdconf.example $PKG/etc/mpd.conf
|
||||||
|
install -D $SRC/mpd $PKG/etc/rc.d/mpd
|
||||||
|
rm -r $PKG/usr/share/doc
|
||||||
|
}
|
Loading…
Reference in New Issue