diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2008-12-27 01:13:47 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2008-12-30 17:07:17 +0000 |
commit | fcb1791f553081e5267c2d0b7795eab224b4a342 (patch) | |
tree | 16772e322df1059b1f13585396c683e50eafc3c3 /meta/packages/maemo/xsp_1.0.0-8.bb | |
parent | e380b48602db316c7d12d328192eadc52e5be861 (diff) | |
download | poky-fcb1791f553081e5267c2d0b7795eab224b4a342.tar.gz |
classes/autotools_stage.bbclass: Add autotools_stage class to further recipes to simplify recipes using standard autotools
Diffstat (limited to 'meta/packages/maemo/xsp_1.0.0-8.bb')
-rw-r--r-- | meta/packages/maemo/xsp_1.0.0-8.bb | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/meta/packages/maemo/xsp_1.0.0-8.bb b/meta/packages/maemo/xsp_1.0.0-8.bb index f4f872e57f..1e10edda14 100644 --- a/meta/packages/maemo/xsp_1.0.0-8.bb +++ b/meta/packages/maemo/xsp_1.0.0-8.bb | |||
@@ -1,15 +1,12 @@ | |||
1 | PR = "r1" | ||
2 | LICENSE= "MIT" | ||
3 | DESCRIPTION = "X Server Nokia 770 extensions library" | 1 | DESCRIPTION = "X Server Nokia 770 extensions library" |
4 | SECTION = "x11/libs" | 2 | SECTION = "x11/libs" |
5 | PRIORITY = "optional" | 3 | PRIORITY = "optional" |
4 | LICENSE= "MIT" | ||
6 | DEPENDS = "virtual/libx11 libxext xpext" | 5 | DEPENDS = "virtual/libx11 libxext xpext" |
7 | 6 | ||
7 | PR = "r1" | ||
8 | |||
8 | SRC_URI = "http://repository.maemo.org/pool/maemo/ossw/source/x/xsp/${PN}_${PV}.tar.gz" | 9 | SRC_URI = "http://repository.maemo.org/pool/maemo/ossw/source/x/xsp/${PN}_${PV}.tar.gz" |
9 | S = "${WORKDIR}/Xsp" | 10 | S = "${WORKDIR}/Xsp" |
10 | 11 | ||
11 | inherit autotools pkgconfig | 12 | inherit autotools_stage pkgconfig |
12 | |||
13 | do_stage() { | ||
14 | autotools_stage_all | ||
15 | } | ||