blob: 73148c1c6ac251d8e122872a76baab5b00b0862c (
plain) (
blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
Tutorial
********
.. warning::
Never build IPS packages as root!
Please review the `SPEC File Format <spec_file_format.html>`_ before continuing.
Creating an IPS package from scratch
====================================
In this tutorial we will create an IPS package from the ground up.
We will build ``ccache`` (`<http://ccache.samba.org>`_),
because of its lightweight code footprint, and easy installation
method.
Generate ipsutils build tree
----------------------------
ipsutils provides a script to automatically create your build environment::
ipsbuild-setuptree.py
Example output::
Creating directory: /Users/jhunk/ipsbuild
Creating directory: /Users/jhunk/ipsbuild/BUILDROOT
Creating directory: /Users/jhunk/ipsbuild/BUILD
Creating directory: /Users/jhunk/ipsbuild/SPECS
Creating directory: /Users/jhunk/ipsbuild/SOURCES
Creating directory: /Users/jhunk/ipsbuild/PKGS
Creating directory: /Users/jhunk/ipsbuild/SPKGS
Download the source
-------------------
.. _here: http://ccache.samba.org/download.html
Get the latest version from here_.
**-OR-**
Download ``ccache`` directly with ``wget``::
wget -P ~/ipsbuild/SOURCES http://samba.org/ftp/ccache/ccache-3.1.9.tar.bz2
.. note::
``wget`` may not installed by default.
To install it on Solaris 11 execute:
``pkg install wget``
Creating a SPEC file
--------------------
Writing an ipsutils SPEC file from scratch feels like a daunting task,
much like when working with RPM SPEC files. There is a utility, ``ipsutils-newspec``
available to help help
::
# ipsutils-newspec ~/ipsutils/ccache.ips
Generating '/home/user/ipsutils/ccache.ips' spec file
Contents of generated file::
name: ccache
repackage:
version:
release: 1
group:
summary: ""
license:
maintainer: ""
upstream_url:
source_url:
arch:
classification: ""
description: ""
%prep
%end
%build
%end
%install
%end
%transforms
%end
|