blob: 81f9b2f59fc78c8b97fd3f1161ac5b42d3930fbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
LICENSE = "GPL"
PR = "r3"
inherit gpe pkgconfig
DESCRIPTION = "A package manager GUI for GPE"
DEPENDS = "ipkg libpcre libgpewidget"
RDEPENDS = "gpe-icons gpe-su"
SECTION = "gpe"
PRIORITY = "optional"
SRC_URI += " file://sbin-and-no-suid-install.patch \
file://search.patch \
file://gpe-package"
FILES_${PN} += " /usr/bin/gpe-package"
CFLAGS += "-DENABLE_PCRE"
LDFLAGS += "-lpcre"
do_install_append() {
install -d ${D}${bindir}
install -m 0755 ${WORKDIR}/gpe-package ${D}${bindir}
}
SRC_URI[md5sum] = "229ba1d7755cc3e77d1e711281ae3554"
SRC_URI[sha256sum] = "4226c983948521ead98ea0b02939de6b28bacba6f929b9404b9154ffbfb3718e"
|