void-packages/srcpkgs/ldm-git/template
2014-12-13 19:34:10 +00:00

31 lines
822 B
Bash

# Template file for 'ldm-git'
pkgname=ldm-git
version=20141213
revision=1
build_style=gnu-makefile
hostmakedepends="perl git"
makedepends="libmount-devel libudev-devel"
short_desc="A lightweight device mounter"
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
license="MIT"
homepage="https://github.com/LemonBoy/ldm"
provides="ldm-${version}_${revision}"
replaces="ldm>=0"
do_fetch() {
local url="git://github.com/LemonBoy/ldm"
msg_normal "Fetching source from $url ...\n"
git clone ${url} ${pkgname}-${version}
}
pre_build() {
# Don't include systemd service as default
sed -i 's|install: all install-main install-systemd|install: all install-main|g' Makefile
}
post_install() {
#systemd service in provided in examples
vinstall ldm.service 644 usr/share/examples/ldm
vinstall LICENSE 644 usr/share/licenses/ldm
}