mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
lockfile-progs: Add new recipe
lockfile-progs provide a method to lock and unlock mailboxes and files safely (via liblockfile). Signed-off-by: Qian Lei <qianl.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
parent
665dde5f93
commit
1bc5ab1737
|
|
@ -0,0 +1,24 @@
|
|||
SUMMARY = "Command-line programs to safely lock and unlock files and mailboxes"
|
||||
DESCRIPTION = "\
|
||||
lockfile-progs provide a method to lock and unlock mailboxes and files \
|
||||
safely (via liblockfile)."
|
||||
HOMEPAGE = "http://packages.qa.debian.org/l/lockfile-progs.html"
|
||||
SECTION = "Applications/System"
|
||||
LICENSE = "GPLv2"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
|
||||
DEPENDS = "liblockfile"
|
||||
|
||||
SRC_URI = "http://ftp.de.debian.org/debian/pool/main/l/${BPN}/${BPN}_${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "64424a766fbc8cf6d613fcc14a096e14"
|
||||
SRC_URI[sha256sum] = "03fb05d25499532f497775b1747b61fa6beebf12d3bcc951e125349ae166c511"
|
||||
|
||||
do_compile() {
|
||||
oe_runmake CFLAGS=' -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables'
|
||||
}
|
||||
|
||||
do_install() {
|
||||
install -m 755 -d ${D}${bindir}
|
||||
install bin/* ${D}${bindir}
|
||||
install -m 755 -d ${D}${mandir}/man1
|
||||
install man/* ${D}${mandir}/man1
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user