27 lines
642 B
Plaintext
27 lines
642 B
Plaintext
|
# Tanım: PulseAudio kontrol uygulaması
|
|||
|
# URL: https://github.com/fernandotcl/pa-applet
|
|||
|
# Paketçi: yasarciv67@gmail.com
|
|||
|
# Gerekler: glib gtk3 libnotify pulseaudio
|
|||
|
|
|||
|
isim=pa-applet
|
|||
|
surum=2017.09
|
|||
|
devir=1
|
|||
|
kaynak=(pa-applet.desktop)
|
|||
|
|
|||
|
derle() {
|
|||
|
git clone https://github.com/fernandotcl/pa-applet.git
|
|||
|
cd "$isim"
|
|||
|
|
|||
|
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
|
|||
|
|
|||
|
CFLAGS+=" -Wno-error"
|
|||
|
./autogen.sh
|
|||
|
./configure --prefix=/usr
|
|||
|
make
|
|||
|
make DESTDIR="$PKG/" install
|
|||
|
|
|||
|
install -D -m644 LICENSE "${PKG}/usr/share/licenses/${isim}/LICENSE"
|
|||
|
cd ..
|
|||
|
install -D pa-applet.desktop "$PKG/etc/xdg/autostart/pa-applet.desktop"
|
|||
|
}
|