arch-ppa/src/lms/PKGBUILD

37 lines
1.1 KiB
Bash

# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
pkgname=lms
pkgver=3.36.0
pkgrel=1
pkgdesc='Lightweight Music Server. Access your self-hosted music using a web interface'
arch=('x86_64')
url='https://github.com/epoupon/lms'
install=lms.install
license=('GPL3')
depends=('ffmpeg'
'libconfig'
'taglib'
'wt')
makedepends=('cmake'
'wt'
'boost'
'gtest'
'graphicsmagick')
source=("${pkgname}-${pkgver}.tar.xz::https://github.com/epoupon/lms/archive/v${pkgver}.tar.gz")
sha256sums=('32e4a9b603db2875206de4eb7e9348a550187f2c79478f3c9f50245ff052c20e')
build() {
mkdir "${pkgname}-${pkgver}/build"
cd "${pkgname}-${pkgver}/build"
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
make
}
package() {
cd "${pkgname}-${pkgver}/build"
make DESTDIR="${pkgdir}" install
install -Dm644 "${pkgdir}/usr/share/lms/lms.conf" -t "${pkgdir}/etc/"
install -Dm644 "${pkgdir}/usr/share/lms/default.service" "${pkgdir}/usr/lib/systemd/system/lms.service"
}
# vim:set ts=2 sw=2 et: