blob: 1721049b5cd2783dee82f1837f08cdfe056ca37f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require quilt.inc
RDEPENDS_${PN} += "patch diffstat bzip2 util-linux"
SRC_URI += "file://aclocal.patch"
inherit autotools gettext
do_install () {
oe_runmake 'BUILD_ROOT=${D}' install
# Remove the compat symlinks
rm -rf "${D}"/usr/share/quilt/compat
}
PACKAGES += "guards guards-doc"
FILES_${PN} = "${sysconfdir} ${datadir}/quilt \
${bindir}/quilt ${libdir}/quilt"
FILES_guards = "${bindir}/guards"
FILES_${PN}-doc = "${mandir}/man1/quilt.1 ${docdir}/${P}"
FILES_guards-doc = "${mandir}/man1/guards.1"
|