1
0
mirror of https://github.com/SuperBFG7/ympd synced 2024-07-01 00:53:14 +00:00
ympd/contrib/myMPD.spec

70 lines
1.7 KiB
RPMSpec
Raw Normal View History

#
# spec file for package myMPD
#
# (c) 2018 Juergen Mang <mail@jcgames.de
Name: myMPD
2018-09-04 20:07:30 +00:00
Version: devel
Release: 0
License: GPL-2.0
Group: Productivity/Multimedia/Sound/Players
Summary: Standalone webclient for mpd
Url: https://github.com/jcorporation/myMPD
2018-09-04 20:07:30 +00:00
Source: https://github.com/jcorporation/myMPD/archive/devel.zip
BuildRequires: gcc
BuildRequires: cmake
BuildRequires: unzip
BuildRequires: libmpdclient-devel
BuildRequires: libmpdclient2
BuildRequires: pkgconfig
BuildRequires: openssl-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
2018-08-30 20:50:02 +00:00
%description
2018-08-28 11:28:52 +00:00
myMPD is a standalone and mobile friendly web mpdclient.
%prep
%setup -q -n %{name}-%{version}
%build
mkdir release
cd release
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_BUILD_TYPE=RELEASE ..
make
%install
cd release
make install DESTDIR=%{buildroot}
2018-09-04 19:36:04 +00:00
%post
2018-09-04 20:07:30 +00:00
getent group mympd > /dev/null
[ "$?" == "2" ] && groupadd mympd
getent passwd mympd > /dev/null
[ "$?" == "2" ] && useradd mympd -g mympd
2018-09-05 18:36:23 +00:00
if [ -d /usr/lib/systemd/ ]
then
[ -d /usr/lib/systemd/system ] || sudo mkdir /usr/lib/systemd/system
cp /usr/share/mympd/mympd.service /usr/lib/systemd/system/
fi
if [ -f /etc/mpd.conf ]
then
LIBRARY=$(grep ^music_directory /etc/mpd.conf | awk {'print $2'} | sed -e 's/"//g')
[ "$LIBRARY" != "" ] && [ ! -e /usr/share/mympd/htdocs/library ] && ln -s "$LIBRARY" /usr/share/mympd/htdocs/library
fi
2018-09-04 20:07:30 +00:00
chown -R mympd /var/lib/mympd
2018-09-05 18:36:23 +00:00
/usr/share/mympd/crcert.sh
%files
%defattr(-,root,root,-)
%doc README.md LICENSE
/usr/bin/mympd
/usr/share/mympd
%config /etc/mympd
/usr/share/man/man1/mympd.1.gz
2018-08-28 11:28:52 +00:00
/var/lib/mympd
%changelog
2018-09-05 18:36:23 +00:00
* Wed Sep 05 2018 Juergen Mang <mail@jcgames.de> - master
- Version from master