30 lines
822 B
Text
30 lines
822 B
Text
# 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
|
|
}
|