diff options
author | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2008-07-03 12:26:20 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2008-07-03 12:26:20 +0530 |
commit | 9e28d370430bbdb7a426508bddf7cf9e06947b3d (patch) | |
tree | 7016530df580ad29ef3711fc74fc9ff51c600770 | |
parent | Fix SRC_URI in build-brasero-1.0.jobuild -- point to a permanent pastebin post (diff) | |
download | jobtage-9e28d370430bbdb7a426508bddf7cf9e06947b3d.tar.gz jobtage-9e28d370430bbdb7a426508bddf7cf9e06947b3d.tar.bz2 jobtage-9e28d370430bbdb7a426508bddf7cf9e06947b3d.zip |
- PORTCONF is in conf/
- Add echoes instead of :
-rw-r--r-- | bheekling/build-brasero/build-brasero-1.0.jobuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/bheekling/build-brasero/build-brasero-1.0.jobuild b/bheekling/build-brasero/build-brasero-1.0.jobuild index a6ae938..e16f685 100644 --- a/bheekling/build-brasero/build-brasero-1.0.jobuild +++ b/bheekling/build-brasero/build-brasero-1.0.jobuild @@ -3,8 +3,6 @@ # List of stuff this jobuild needs # Excluding portage config files SRC_URI="http://pastebin.osuosl.org/pastebin.php?dl=8934" -# Portage config files -PORTCONF_URI="" # DEPEND on a jobuild with glee # The job must be completed in the same chroot DEPEND="bheekling/test-libbeagle" @@ -15,20 +13,20 @@ SIDEPEND="" # Get SRC_URI and unpack unpack_phase() { - : + echo 'unpack' } # Do various setup setup_phase() { - : + echo 'setup' } # Chroot and do work chroot_phase() { - : + echo 'chroot' } # Cleanup cleanup_phase() { - : + echo 'cleanup' } |