contrib/ncpamixer/Pkgfile

24 lines
545 B
Plaintext
Raw Normal View History

2018-09-08 01:58:34 +02:00
# Description: ncurses Pulseaudio mixer
# URL: https://github.com/fulhax/ncpamixer
2019-10-30 00:36:37 +01:00
# Maintainer: unmaintained
2018-09-08 01:58:34 +02:00
# Depends on: cmake ncurses pulseaudio
name=ncpamixer
2019-04-09 08:32:42 +02:00
version=1.3.3
2018-09-08 01:58:34 +02:00
release=1
source=(https://github.com/fulhax/ncpamixer/archive/$version/$name-$version.tar.gz
$name.1)
build() {
cd $name-$version
mkdir build
cd build
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr ../src
make
make DESTDIR=$PKG install
install -Dm644 $SRC/$name.1 $PKG/usr/share/man/man1/$name.1
}