mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
24 lines
547 B
Plaintext
24 lines
547 B
Plaintext
# description : Almost exact clone of ncmpc with some new features
|
|
# depends : boost libmpdclient icu ncurses readline taglib curl
|
|
|
|
name=ncmpcpp
|
|
version=0.9.2
|
|
release=2
|
|
source="https://rybczak.net/ncmpcpp/stable/$name-$version.tar.bz2"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
mkdir -p $PKG/usr/share/$name
|
|
mv $PKG/usr/share/doc/$name/config \
|
|
$PKG/usr/share/doc/$name/bindings \
|
|
$PKG/usr/share/$name
|
|
|
|
sed -i 's,/usr/share/doc/,/usr/share/,g' \
|
|
$PKG/usr/share/man/man1/ncmpcpp.1
|
|
}
|